diff options
| author | Bananeweizen <bananeweizen@gmx.de> | 2012-02-27 21:24:51 +0100 |
|---|---|---|
| committer | Bananeweizen <bananeweizen@gmx.de> | 2012-02-27 21:24:51 +0100 |
| commit | a4ac7464db219517ab6db45dad860f9c3abc5979 (patch) | |
| tree | b3b0db16500770d41b9424cb6a2ac546d34087ce /main/res/layout/addresses_item.xml | |
| parent | 1e615aceb200399b6264e1939383370ed9695322 (diff) | |
| download | cgeo-a4ac7464db219517ab6db45dad860f9c3abc5979.zip cgeo-a4ac7464db219517ab6db45dad860f9c3abc5979.tar.gz cgeo-a4ac7464db219517ab6db45dad860f9c3abc5979.tar.bz2 | |
#1195: address selection as real ListActivity
* includes some renaming of other list related code for clarity
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 |
