aboutsummaryrefslogtreecommitdiffstats
path: root/main/res/layout/addresses.xml
blob: 1f8665ed9c6d78020fd28afd445328124345ab51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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="fill_parent"
		android:orientation="vertical">
	<LinearLayout style="@style/action_bar">
		<ImageView style="@style/action_bar_action"
				android:onClick="goHome" />
		<View style="@style/action_bar_separator" />
		<TextView style="@style/action_bar_title" />
	</LinearLayout>
	<ListView
			android:id="@android:id/list"
			android:layout_width="fill_parent"
			android:layout_height="fill_parent"
			android:layout_margin="0dip"
			android:padding="0dip"
			android:dividerHeight="1dip"
			android:background="?background_color"
			android:cacheColorHint="?background_color" />
</LinearLayout>