Statistics
| Branch: | Revision:

root / res / layout / viewbackup.xml @ f58bf9f4

History | View | Annotate | Download (1.8 kB)

1
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout
3
  xmlns:android="http://schemas.android.com/apk/res/android"
4
  android:layout_width="fill_parent"
5
  android:layout_height="fill_parent" 
6
  android:orientation="vertical">
7
    <TextView 
8
            android:layout_height="wrap_content" 
9
        android:layout_width="wrap_content" 
10
            android:text="Daily Backup Window (GMT)" 
11
            android:layout_marginLeft="22dip">
12
    </TextView>
13
    <Spinner 
14
            android:layout_height="wrap_content" 
15
        android:layout_marginLeft="22dip" 
16
            android:layout_width="wrap_content" 
17
            android:id="@+id/daily_backup_spinner">
18
    </Spinner>
19
    <TextView 
20
            android:layout_height="wrap_content" 
21
            android:layout_width="wrap_content" 
22
            android:layout_marginLeft="22dip" 
23
            android:layout_marginTop="10dip"
24
            android:text="Weekly Backup Window">
25
    </TextView>
26
    <Spinner 
27
            android:layout_height="wrap_content" 
28
            android:layout_marginLeft="22dip" 
29
            android:layout_width="wrap_content" 
30
            android:prompt="@string/weekly_backup_prompt" 
31
            android:id="@+id/weekly_backup_spinner">
32
    </Spinner>
33
    <CheckBox 
34
            android:layout_width="wrap_content" 
35
            android:layout_height="wrap_content" 
36
            android:layout_marginLeft="22dip" 
37
            android:text="Enable Backups" 
38
            android:layout_marginTop="10dip" 
39
            android:id="@+id/enable_backup_checkbox">
40
    </CheckBox>
41
    <RelativeLayout 
42
            android:layout_width="fill_parent" 
43
            android:layout_height="wrap_content">
44
        <Button 
45
                android:id="@+id/backup_update_button" 
46
                android:text="Update" 
47
                android:layout_height="wrap_content" 
48
                android:layout_width="130dip" 
49
                android:layout_centerInParent="true" 
50
                android:layout_marginTop="20dip">
51
        </Button>
52
    </RelativeLayout>
53
</LinearLayout>