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">
4
<LinearLayout android:layout_height="wrap_content" android:orientation="vertical" android:layout_weight="1" android:layout_width="fill_parent">
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"/>
9
<LinearLayout android:id="@+id/doit_page_1" android:layout_height="wrap_content" android:layout_width="fill_parent" android:orientation="vertical">
11
<TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/doit_ready" />
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" />
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">
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"/>
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" />
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" />
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" />
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" />
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" />
48
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" />
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" />
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"/>