diff options
Diffstat (limited to 'main/res/layout/addresses_item.xml')
| -rw-r--r-- | main/res/layout/addresses_item.xml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/main/res/layout/addresses_item.xml b/main/res/layout/addresses_item.xml new file mode 100644 index 0000000..0699a6f --- /dev/null +++ b/main/res/layout/addresses_item.xml @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="utf-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/button_map" + android:layout_height="wrap_content" + android:layout_width="fill_parent" + android:layout_margin="3dip" + android:paddingLeft="5dip" + android:paddingRight="5dip" + android:paddingBottom="7dip" + android:paddingTop="7dip" + android:orientation="vertical" + android:background="?background_color" > + <TextView android:id="@+id/label" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:scrollHorizontally="true" + android:textSize="22dip" + android:gravity="left" + android:singleLine="false" + android:ellipsize="marquee" + android:textColor="?text_color" /> + <TextView android:id="@+id/distance" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:scrollHorizontally="true" + android:textSize="12dip" + android:gravity="left" + android:lines="1" + android:singleLine="true" + android:ellipsize="marquee" + android:textColor="?text_color" /> +</LinearLayout>
\ No newline at end of file |
