2014-07-28 12:22:53 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@drawable/view_transparent_selection"
|
|
|
|
android:id="@+id/package_delivered_layout"
|
|
|
|
android:minHeight="48dp"
|
|
|
|
android:descendantFocusability="blocksDescendants">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/waypoint_icon"
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:src="@drawable/list_favorite"
|
|
|
|
android:layout_height="25dp"
|
|
|
|
android:layout_width="25dp"
|
|
|
|
android:layout_gravity="center_vertical" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/waypoint_dist"
|
|
|
|
android:layout_width="60dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="4dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
2015-03-08 00:50:43 +01:00
|
|
|
android:textColor="@color/wpt_distance_color"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:maxLines="2"
|
|
|
|
android:textStyle="bold"
|
2014-12-29 16:52:20 +01:00
|
|
|
android:textSize="15sp"/>
|
2014-11-17 16:25:17 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/waypoint_text"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="4dp"
|
|
|
|
android:maxLines="2"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:textSize="18sp" />
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/all_points"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-03-08 18:05:19 +01:00
|
|
|
android:contentDescription="@string/shared_string_more"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:focusable="false"
|
2014-12-29 16:52:20 +01:00
|
|
|
style="@style/Widget.AppCompat.ActionButton"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:src="@drawable/ic_action_core_overflow_dark" />
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/info_close"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-03-08 14:57:01 +01:00
|
|
|
android:contentDescription="@string/shared_string_close"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginRight="4dp"
|
2014-12-29 16:52:20 +01:00
|
|
|
style="@style/Widget.AppCompat.ActionButton"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:focusable="false"
|
|
|
|
android:src="@drawable/ic_action_gremove_dark" />
|
2014-07-28 12:22:53 +02:00
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|