/android/import-contacts

To get this branch, use:
bzr branch http://bzr.ed.am/android/import-contacts
1
2
3
4
5
6
7
8
9
10
11
12
<?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="vertical" android:paddingLeft="20dp" android:paddingRight="20dp">

	<TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/mergeprompt_help" />
	<TextView android:layout_height="wrap_content" android:id="@+id/mergeprompt_name" android:textStyle="bold" android:gravity="center" android:layout_width="fill_parent"/>
	<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" />
	<Button android:layout_height="wrap_content" android:layout_width="fill_parent" android:id="@+id/merge_keep" android:text="@string/merge_keep"/>
	<Button android:layout_height="wrap_content" android:layout_width="fill_parent" android:text="@string/merge_merge" android:id="@+id/merge_merge" />
	<Button android:layout_height="wrap_content" android:layout_width="fill_parent" android:text="@string/merge_overwrite" android:id="@+id/merge_overwrite" />
	<CheckBox android:id="@+id/mergeprompt_always" android:layout_height="wrap_content" android:layout_width="fill_parent" android:text="@string/mergeprompt_always" />

</LinearLayout>