OsmAnd/OsmAnd/res/layout/update_index_frament.xml
2015-10-20 16:49:57 +03:00

41 lines
No EOL
1.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:osmand="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/listMessageTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="?android:textColorPrimary"
android:textSize="@dimen/default_list_text_size"
android:padding="@dimen/list_content_padding"
tools:text="Germany"
android:gravity="center"
tools:visibility="visible"
android:visibility="gone"/>
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_marginLeft="0dp"
android:layout_marginRight="0dp"
android:layout_marginTop="0dp"
android:layout_weight="1"/>
<net.osmand.plus.widgets.ButtonEx
android:id="@+id/updateAllButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:background="?attr/downloadButtonBackground"
android:text="@string/update_all"
osmand:textAllCapsCompat="true"
tools:visibility="visible"
android:visibility="gone"/>
</LinearLayout>