69 lines
No EOL
3.2 KiB
XML
69 lines
No EOL
3.2 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="@dimen/dashListItemHeight">
|
|
<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="@dimen/dashFavIconMargin"
|
|
android:layout_marginRight="@dimen/dashFavIconMargin"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="fill_parent"/>
|
|
<LinearLayout android:orientation="vertical"
|
|
android:layout_weight="1"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content">
|
|
<TextView android:id="@+id/name"
|
|
android:textSize="@dimen/dashFavNameTextSize"
|
|
android:textColor="@color/dashboard_black"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
<LinearLayout android:orientation="horizontal"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
<ImageView android:visibility="gone"
|
|
android:id="@+id/direction"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_width="@dimen/dashFavDirectionSize"
|
|
android:layout_height="@dimen/dashFavDirectionSize"/>
|
|
<TextView android:id="@+id/distance"
|
|
android:textSize="@dimen/showAllButtonTextSize"
|
|
android:textColor="@color/dashboard_blue"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
<ImageView android:id="@+id/group_image"
|
|
android:layout_marginLeft="4dp"
|
|
android:src="@drawable/ic_small_group"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
<TextView android:id="@+id/group_name"
|
|
android:layout_marginLeft="4dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:textSize="@dimen/showAllButtonTextSize"
|
|
android:textColor="@color/dashboard_descr_colol"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<ImageButton android:id="@+id/navigate_to"
|
|
android:layout_gravity="center_vertical"
|
|
android:src="@drawable/ic_action_gdirections_light"
|
|
android:background="@drawable/dashboard_button"
|
|
android:layout_marginLeft="@dimen/dashFavIconMargin"
|
|
android:layout_width="@dimen/dashListItemHeight"
|
|
android:layout_height="@dimen/dashListItemHeight"/>
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout> |