65 lines
No EOL
2 KiB
XML
65 lines
No EOL
2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dashListItemHeight"
|
|
android:layout_marginLeft="@dimen/dashFavIconMargin"
|
|
android:layout_marginRight="@dimen/dashFavIconMargin"
|
|
android:orientation="vertical">
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="?attr/dashboard_divider" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_marginLeft="@dimen/subHeaderMarginLeft"
|
|
android:layout_marginStart="@dimen/subHeaderMarginLeft"
|
|
android:orientation="horizontal">
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/map_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textSize="@dimen/dashFavNameTextSize"
|
|
android:lines="1"
|
|
android:maxLines="1"
|
|
android:ellipsize="end"
|
|
tools:text="@string/lorem_ipsum" />
|
|
|
|
<TextView
|
|
android:id="@+id/map_descr"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="?android:textColorSecondary"
|
|
tools:text="@string/lorem_ipsum" />
|
|
|
|
<ProgressBar
|
|
android:id="@+id/ProgressBar"
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="gone" />
|
|
</LinearLayout>
|
|
|
|
<ImageButton
|
|
android:id="@+id/btn_download"
|
|
android:layout_width="@dimen/dashListItemHeight"
|
|
android:layout_height="@dimen/dashListItemHeight"
|
|
android:layout_gravity="center_vertical"
|
|
android:background="?attr/dashboard_button"
|
|
android:src="@drawable/download_button"/>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |