2014-06-27 13:15:42 +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="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@color/color_black">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/point_name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_marginTop="2dp"
|
|
|
|
android:layout_marginBottom="2dp"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/point_id"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:text="@string/package_delivered" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/delivered_yes"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_marginRight="5dp"
|
2015-03-08 00:43:21 +01:00
|
|
|
android:text="@string/shared_string_yes" />
|
2014-11-17 16:25:17 +01:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/delivered_no"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_marginRight="5dp"
|
2015-03-08 08:56:57 +01:00
|
|
|
android:text="@string/shared_string_no" />
|
2014-11-17 16:25:17 +01:00
|
|
|
</LinearLayout>
|
2014-07-10 12:27:09 +02:00
|
|
|
|
2014-06-27 13:15:42 +02:00
|
|
|
</LinearLayout>
|