2010-01-22 15:21:33 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent" android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal" android:id="@+id/deliveryEntry">
|
2010-01-25 17:58:12 +01:00
|
|
|
<ImageView android:id="@+id/delivered" android:layout_width="wrap_content"
|
2010-01-22 15:21:33 +01:00
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
<LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical">
|
|
|
|
<TextView android:id="@+id/name" android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
<TextView android:id="@+id/number" android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|