aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/res/layout/main.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/main.xml')
-rw-r--r--res/layout/main.xml39
1 files changed, 39 insertions, 0 deletions
diff --git a/res/layout/main.xml b/res/layout/main.xml
new file mode 100644
index 0000000..7136eb1
--- /dev/null
+++ b/res/layout/main.xml
@@ -0,0 +1,39 @@
1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="fill_parent"
4 android:layout_height="fill_parent"
5 android:gravity="center"
6 android:orientation="vertical" >
7
8 <TextView android:id="@+id/hello"
9 android:layout_width="wrap_content"
10 android:layout_height="wrap_content"
11 android:text="@string/hello" />
12
13 <TextView android:id="@+id/version"
14 android:layout_width="wrap_content"
15 android:layout_height="wrap_content"
16 android:text="@string/version" />
17
18 <TextView android:id="@+id/cpu"
19 android:layout_width="wrap_content"
20 android:layout_height="wrap_content"
21 android:text="@string/cpu" />
22
23 <TextView android:id="@+id/path"
24 android:layout_width="wrap_content"
25 android:layout_height="wrap_content"
26 android:text="@string/path" />
27
28 <TextView android:id="@+id/folder"
29 android:layout_width="wrap_content"
30 android:layout_height="wrap_content"
31 android:text="@string/folder" />
32
33 <Button android:id="@+id/install"
34 android:layout_width="wrap_content"
35 android:layout_height="wrap_content"
36 android:text="@string/button_install"
37 android:onClick="installToybox" />
38
39</LinearLayout>