39 lines
No EOL
1.7 KiB
XML
39 lines
No EOL
1.7 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:background="@drawable/dashboard_button"
|
|
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_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<ImageView android:id="@+id/icon"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="12dp"
|
|
android:layout_marginRight="12dp"
|
|
android:layout_width="28dp"
|
|
android:layout_height="28dp"/>
|
|
|
|
<LinearLayout android:orientation="vertical"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
<TextView android:id="@+id/name"
|
|
android:textSize="16sp"
|
|
android:textColor="@color/dashboard_black"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
<TextView android:id="@+id/distance"
|
|
android:textSize="12sp"
|
|
android:textColor="@color/dashboard_blue"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout> |