2015-03-10 15:20:30 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/list_item_height"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
2015-03-26 00:58:08 +01:00
|
|
|
android:layout_marginLeft="5dp"
|
2015-03-10 15:20:30 +01:00
|
|
|
android:id="@+id/header"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
2017-02-15 17:15:23 +01:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="Route details"/>
|
2015-03-10 15:20:30 +01:00
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/start_navigation"
|
2016-04-08 03:26:55 +02:00
|
|
|
android:contentDescription="@string/follow"
|
2015-03-25 20:23:25 +01:00
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_marginRight="5dp"
|
2015-03-10 15:20:30 +01:00
|
|
|
android:layout_width="@dimen/list_item_height"
|
|
|
|
android:layout_height="@dimen/list_item_height"
|
2015-04-24 23:45:03 +02:00
|
|
|
android:background="?attr/dashboard_button"
|
2015-03-10 15:20:30 +01:00
|
|
|
android:src="@drawable/ic_action_start_navigation"/>
|
|
|
|
</LinearLayout>
|