diff options
Diffstat (limited to 'res/layout')
| -rw-r--r-- | res/layout/main.xml | 114 |
1 files changed, 57 insertions, 57 deletions
diff --git a/res/layout/main.xml b/res/layout/main.xml index eec86f2..0b27286 100644 --- a/res/layout/main.xml +++ b/res/layout/main.xml | |||
| @@ -1,73 +1,73 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 2 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | android:layout_width="fill_parent" | 3 | android:layout_width="fill_parent" |
| 4 | android:layout_height="fill_parent" | 4 | android:layout_height="fill_parent" |
| 5 | android:gravity="center" | 5 | android:gravity="center" |
| 6 | android:orientation="vertical" > | 6 | android:orientation="vertical" > |
| 7 | 7 | ||
| 8 | <TextView android:id="@+id/hello" | 8 | <TextView android:id="@+id/hello" |
| 9 | android:layout_width="wrap_content" | 9 | android:layout_width="wrap_content" |
| 10 | android:layout_height="wrap_content" | 10 | android:layout_height="wrap_content" |
| 11 | android:text="@string/hello" /> | 11 | android:text="@string/hello" /> |
| 12 | 12 | ||
| 13 | <TextView android:id="@+id/version" | 13 | <TextView android:id="@+id/version" |
| 14 | android:layout_width="wrap_content" | 14 | android:layout_width="wrap_content" |
| 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" | 18 | <TextView android:id="@+id/versionsPrompt" |
| 19 | android:layout_width="wrap_content" | 19 | android:layout_width="wrap_content" |
| 20 | android:layout_height="wrap_content" | 20 | android:layout_height="wrap_content" |
| 21 | android:text="@string/versionsPrompt" /> | 21 | android:text="@string/versionsPrompt" /> |
| 22 | 22 | ||
| 23 | <Spinner android:id="@+id/versions" | 23 | <Spinner android:id="@+id/versions" |
| 24 | android:layout_width="wrap_content" | 24 | android:layout_width="wrap_content" |
| 25 | android:layout_height="wrap_content" | 25 | android:layout_height="wrap_content" |
| 26 | android:prompt="@+id/versionsPrompt" /> | 26 | android:prompt="@+id/versionsPrompt" /> |
| 27 | 27 | ||
| 28 | <TextView android:id="@+id/cpusPrompt" | 28 | <TextView android:id="@+id/cpusPrompt" |
| 29 | android:layout_width="wrap_content" | 29 | android:layout_width="wrap_content" |
| 30 | android:layout_height="wrap_content" | 30 | android:layout_height="wrap_content" |
| 31 | android:text="@string/cpusPrompt" /> | 31 | android:text="@string/cpusPrompt" /> |
| 32 | 32 | ||
| 33 | <Spinner android:id="@+id/cpus" | 33 | <Spinner android:id="@+id/cpus" |
| 34 | android:layout_width="wrap_content" | 34 | android:layout_width="wrap_content" |
| 35 | android:layout_height="wrap_content" | 35 | android:layout_height="wrap_content" |
| 36 | android:prompt="@+id/cpusPrompt" /> | 36 | android:prompt="@+id/cpusPrompt" /> |
| 37 | 37 | ||
| 38 | <TextView android:id="@+id/path" | 38 | <TextView android:id="@+id/path" |
| 39 | android:layout_width="wrap_content" | 39 | android:layout_width="wrap_content" |
| 40 | android:layout_height="wrap_content" | 40 | android:layout_height="wrap_content" |
| 41 | android:text="@string/path" /> | 41 | android:text="@string/path" /> |
| 42 | 42 | ||
| 43 | <TextView android:id="@+id/pathsPrompt" | 43 | <TextView android:id="@+id/pathsPrompt" |
| 44 | android:layout_width="wrap_content" | 44 | android:layout_width="wrap_content" |
| 45 | android:layout_height="wrap_content" | 45 | android:layout_height="wrap_content" |
| 46 | android:text="@string/pathsPrompt" /> | 46 | android:text="@string/pathsPrompt" /> |
| 47 | 47 | ||
| 48 | <Spinner android:id="@+id/paths" | 48 | <Spinner android:id="@+id/paths" |
| 49 | android:layout_width="wrap_content" | 49 | android:layout_width="wrap_content" |
| 50 | android:layout_height="wrap_content" | 50 | android:layout_height="wrap_content" |
| 51 | android:prompt="@+id/pathsPrompt" /> | 51 | android:prompt="@+id/pathsPrompt" /> |
| 52 | 52 | ||
| 53 | <TextView android:id="@+id/folder" | 53 | <TextView android:id="@+id/folder" |
| 54 | android:layout_width="wrap_content" | 54 | android:layout_width="wrap_content" |
| 55 | android:layout_height="wrap_content" | 55 | android:layout_height="wrap_content" |
| 56 | android:text="@string/folder" /> | 56 | android:text="@string/folder" /> |
| 57 | 57 | ||
| 58 | <Button android:id="@+id/install" | 58 | <Button android:id="@+id/install" |
| 59 | android:layout_width="wrap_content" | 59 | android:layout_width="wrap_content" |
| 60 | android:layout_height="wrap_content" | 60 | android:layout_height="wrap_content" |
| 61 | android:text="@string/button_install" | 61 | android:text="@string/button_install" |
| 62 | android:onClick="installToybox" /> | 62 | android:onClick="installToybox" /> |
| 63 | 63 | ||
| 64 | <TextView android:id="@+id/source" | 64 | <TextView android:id="@+id/source" |
| 65 | android:layout_width="wrap_content" | 65 | android:layout_width="wrap_content" |
| 66 | android:layout_height="wrap_content" | 66 | android:layout_height="wrap_content" |
| 67 | android:text="@string/source" /> | 67 | android:text="@string/source" /> |
| 68 | 68 | ||
| 69 | <TextView android:id="@+id/destination" | 69 | <TextView android:id="@+id/destination" |
| 70 | android:layout_width="wrap_content" | 70 | android:layout_width="wrap_content" |
| 71 | android:layout_height="wrap_content" | 71 | android:layout_height="wrap_content" |
| 72 | android:text="@string/destination" /> | 72 | android:text="@string/destination" /> |
| 73 | </LinearLayout> | 73 | </LinearLayout> |
