37 lines
No EOL
1.3 KiB
XML
37 lines
No EOL
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_marginLeft="12dp"
|
|
android:layout_marginRight="12dp"
|
|
android:layout_height="50dp">
|
|
<View android:layout_width="match_parent"
|
|
android:background="@color/dashboard_divider"
|
|
android:layout_height="1dp"/>
|
|
<LinearLayout android:orientation="horizontal"
|
|
android:layout_marginLeft="12dp"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content">
|
|
<LinearLayout android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="50dp">
|
|
<TextView android:id="@+id/map_name"
|
|
android:textColor="@color/dashboard_black"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
<TextView android:id="@+id/map_descr"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
</LinearLayout>
|
|
<Button android:id="@+id/btn_download"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
</LinearLayout>
|
|
|
|
<ProgressBar android:id="@+id/ProgressBar"
|
|
android:visibility="gone"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
</LinearLayout> |