bzr branch
http://bzr.ed.am/android/import-contacts
1
by edam
Initial import |
1 |
<?xml version="1.0" encoding="utf-8"?> |
2 |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> |
|
3 |
||
4 |
<LinearLayout android:layout_height="wrap_content" android:orientation="vertical" android:layout_weight="1" android:layout_width="fill_parent"> |
|
5 |
||
6 |
<TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/doit_title" android:textAppearance="?android:attr/textAppearanceMedium" /> |
|
7 |
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="20dp"/> |
|
8 |
||
9 |
<LinearLayout android:id="@+id/doit_page_1" android:layout_height="wrap_content" android:layout_width="fill_parent" android:orientation="vertical"> |
|
10 |
||
11 |
<TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/doit_ready" /> |
|
12 |
||
13 |
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" /> |
|
14 |
<LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="center" android:weightSum="3"> |
|
15 |
<Button android:text="@string/doit_begin" android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_weight="1" android:id="@+id/doit_begin" /> |
|
16 |
</LinearLayout> |
|
17 |
||
18 |
</LinearLayout> |
|
19 |
||
20 |
<RelativeLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/doit_page_2" android:layout_marginLeft="10dp" android:layout_marginRight="10dp"> |
|
21 |
||
22 |
<ProgressBar android:id="@+id/doit_progress" style="?android:attr/progressBarStyleHorizontal" android:layout_height="wrap_content" android:layout_width="fill_parent" /> |
|
23 |
<TextView android:id="@+id/doit_percentage" android:layout_below="@id/doit_progress" android:layout_width="wrap_content" android:layout_height="wrap_content"/> |
|
24 |
<TextView android:id="@+id/doit_outof" android:layout_below="@id/doit_progress" android:layout_alignRight="@id/doit_progress" android:layout_width="wrap_content" android:layout_height="wrap_content"/> |
|
25 |
||
26 |
<LinearLayout android:layout_below="@id/doit_percentage" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical"> |
|
27 |
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" /> |
|
28 |
||
29 |
<TableLayout android:layout_width="wrap_content" android:layout_height="wrap_content"> |
|
30 |
<TableRow android:layout_width="wrap_content" android:layout_height="wrap_content"> |
|
31 |
<TextView android:paddingRight="20dp" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/doit_creates" /> |
|
32 |
<TextView android:id="@+id/doit_creates" android:layout_width="wrap_content" android:layout_height="wrap_content" /> |
|
33 |
</TableRow> |
|
34 |
<TableRow android:layout_width="wrap_content" android:layout_height="wrap_content"> |
|
35 |
<TextView android:paddingRight="20dp" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/doit_overwrites" /> |
|
36 |
<TextView android:id="@+id/doit_overwrites" android:layout_width="wrap_content" android:layout_height="wrap_content" /> |
|
37 |
</TableRow> |
|
38 |
<TableRow android:layout_width="wrap_content" android:layout_height="wrap_content"> |
|
39 |
<TextView android:paddingRight="20dp" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/doit_merges" /> |
|
40 |
<TextView android:id="@+id/doit_merges" android:layout_width="wrap_content" android:layout_height="wrap_content" /> |
|
41 |
</TableRow> |
|
42 |
<TableRow android:layout_width="wrap_content" android:layout_height="wrap_content"> |
|
43 |
<TextView android:paddingRight="20dp" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/doit_skips" /> |
|
44 |
<TextView android:id="@+id/doit_skips" android:layout_width="wrap_content" android:layout_height="wrap_content" /> |
|
45 |
</TableRow> |
|
46 |
</TableLayout> |
|
47 |
||
48 |
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" /> |
|
49 |
||
50 |
<LinearLayout android:id="@+id/doit_closedisplay" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content" android:visibility="gone" > |
|
51 |
<TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/doit_alldone" android:gravity="center" android:textAppearance="?android:attr/textAppearanceMedium" android:paddingBottom="10dp" /> |
|
52 |
<LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="center" android:weightSum="3"> |
|
53 |
<Button android:text="@string/doit_close" android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_weight="1" android:id="@+id/doit_close" /> |
|
54 |
</LinearLayout> |
|
55 |
</LinearLayout> |
|
56 |
||
57 |
</LinearLayout> |
|
58 |
||
59 |
</RelativeLayout> |
|
60 |
||
61 |
</LinearLayout> |
|
62 |
||
63 |
<LinearLayout android:orientation="horizontal" android:layout_height="wrap_content" android:layout_width="fill_parent" android:gravity="right" android:background="@android:drawable/bottom_bar" android:weightSum="3"> |
|
64 |
<Button android:id="@+id/back" android:text="@string/back" android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_weight="1" android:enabled="false"/> |
|
65 |
<Button android:id="@+id/next" android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_weight="1" android:enabled="false" android:text="@string/next"/> |
|
66 |
</LinearLayout> |
|
67 |
||
68 |
</LinearLayout> |