diff options
author | David Walter Seikel | 2014-09-22 06:34:40 +1000 |
---|---|---|
committer | David Walter Seikel | 2014-09-22 06:34:40 +1000 |
commit | 6c9b2b972f26132249b93163f589e9df339188c1 (patch) | |
tree | c8974a19be682b0af47d83a1c2ae21a07931f3ba /res/layout | |
parent | Version number bump. (diff) | |
download | toyboxInstaller-6c9b2b972f26132249b93163f589e9df339188c1.zip toyboxInstaller-6c9b2b972f26132249b93163f589e9df339188c1.tar.gz toyboxInstaller-6c9b2b972f26132249b93163f589e9df339188c1.tar.bz2 toyboxInstaller-6c9b2b972f26132249b93163f589e9df339188c1.tar.xz |
More UI, and get most of the UI working.
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/main.xml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/res/layout/main.xml b/res/layout/main.xml index 7136eb1..18c9ec9 100644 --- a/res/layout/main.xml +++ b/res/layout/main.xml | |||
@@ -15,6 +15,16 @@ | |||
15 | android:layout_height="wrap_content" | 15 | android:layout_height="wrap_content" |
16 | android:text="@string/version" /> | 16 | android:text="@string/version" /> |
17 | 17 | ||
18 | <TextView android:id="@+id/versionsPrompt" | ||
19 | android:layout_width="wrap_content" | ||
20 | android:layout_height="wrap_content" | ||
21 | android:text="@string/versionsPrompt" /> | ||
22 | |||
23 | <Spinner android:id="@+id/versions" | ||
24 | android:layout_width="wrap_content" | ||
25 | android:layout_height="wrap_content" | ||
26 | android:prompt="@+id/versionsPrompt" /> | ||
27 | |||
18 | <TextView android:id="@+id/cpu" | 28 | <TextView android:id="@+id/cpu" |
19 | android:layout_width="wrap_content" | 29 | android:layout_width="wrap_content" |
20 | android:layout_height="wrap_content" | 30 | android:layout_height="wrap_content" |
@@ -25,6 +35,16 @@ | |||
25 | android:layout_height="wrap_content" | 35 | android:layout_height="wrap_content" |
26 | android:text="@string/path" /> | 36 | android:text="@string/path" /> |
27 | 37 | ||
38 | <TextView android:id="@+id/pathsPrompt" | ||
39 | android:layout_width="wrap_content" | ||
40 | android:layout_height="wrap_content" | ||
41 | android:text="@string/pathsPrompt" /> | ||
42 | |||
43 | <Spinner android:id="@+id/paths" | ||
44 | android:layout_width="wrap_content" | ||
45 | android:layout_height="wrap_content" | ||
46 | android:prompt="@+id/pathsPrompt" /> | ||
47 | |||
28 | <TextView android:id="@+id/folder" | 48 | <TextView android:id="@+id/folder" |
29 | android:layout_width="wrap_content" | 49 | android:layout_width="wrap_content" |
30 | android:layout_height="wrap_content" | 50 | android:layout_height="wrap_content" |
@@ -36,4 +56,13 @@ | |||
36 | android:text="@string/button_install" | 56 | android:text="@string/button_install" |
37 | android:onClick="installToybox" /> | 57 | android:onClick="installToybox" /> |
38 | 58 | ||
59 | <TextView android:id="@+id/source" | ||
60 | android:layout_width="wrap_content" | ||
61 | android:layout_height="wrap_content" | ||
62 | android:text="@string/source" /> | ||
63 | |||
64 | <TextView android:id="@+id/destination" | ||
65 | android:layout_width="wrap_content" | ||
66 | android:layout_height="wrap_content" | ||
67 | android:text="@string/destination" /> | ||
39 | </LinearLayout> | 68 | </LinearLayout> |