aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/res/layout/main.xml
blob: 0b27286ac1cb390b4bb90efb6d33903a9abd17a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?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:gravity="center"
  android:orientation="vertical" >

  <TextView android:id="@+id/hello"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello" />

  <TextView android:id="@+id/version"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/version" />

  <TextView android:id="@+id/versionsPrompt"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/versionsPrompt" />

  <Spinner android:id="@+id/versions"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:prompt="@+id/versionsPrompt" />

  <TextView android:id="@+id/cpusPrompt"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/cpusPrompt" />

  <Spinner android:id="@+id/cpus"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:prompt="@+id/cpusPrompt" />

  <TextView android:id="@+id/path"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/path" />

  <TextView android:id="@+id/pathsPrompt"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/pathsPrompt" />

  <Spinner android:id="@+id/paths"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:prompt="@+id/pathsPrompt" />

  <TextView android:id="@+id/folder"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/folder" />

  <Button android:id="@+id/install"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/button_install"
    android:onClick="installToybox" />

  <TextView android:id="@+id/source"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/source" />

  <TextView android:id="@+id/destination"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/destination" />
</LinearLayout>