summaryrefslogtreecommitdiffstats
path: root/PicoLangInstallerEngGbr/res/layout
diff options
context:
space:
mode:
Diffstat (limited to 'PicoLangInstallerEngGbr/res/layout')
-rwxr-xr-xPicoLangInstallerEngGbr/res/layout/installing.xml29
-rwxr-xr-xPicoLangInstallerEngGbr/res/layout/retry.xml16
-rwxr-xr-xPicoLangInstallerEngGbr/res/layout/uninstall.xml17
3 files changed, 62 insertions, 0 deletions
diff --git a/PicoLangInstallerEngGbr/res/layout/installing.xml b/PicoLangInstallerEngGbr/res/layout/installing.xml
new file mode 100755
index 0000000..117c333
--- /dev/null
+++ b/PicoLangInstallerEngGbr/res/layout/installing.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<RelativeLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/root" android:layout_width="fill_parent"
+ android:background="#ff000000"
+ android:layout_height="fill_parent">
+
+ <LinearLayout android:id="@+id/progress_indicator"
+ android:orientation="vertical"
+ android:layout_centerInParent="true"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content">
+
+ <TextView android:paddingTop="5dip"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center"
+ android:text="@string/installing_message" android:textSize="18sp"
+ android:textColor="?android:attr/textColorPrimary" />
+
+ <ProgressBar android:id="@android:id/progress"
+ style="?android:attr/progressBarStyleLarge"
+ android:layout_gravity="center"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content" />
+ </LinearLayout>
+
+</RelativeLayout>
diff --git a/PicoLangInstallerEngGbr/res/layout/retry.xml b/PicoLangInstallerEngGbr/res/layout/retry.xml
new file mode 100755
index 0000000..0fefd3f
--- /dev/null
+++ b/PicoLangInstallerEngGbr/res/layout/retry.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical" android:layout_width="fill_parent"
+ android:layout_height="fill_parent">
+
+ <TextView android:paddingTop="25dip" android:paddingBottom="45dip"
+ android:layout_width="wrap_content" android:layout_height="wrap_content"
+ android:layout_gravity="center" android:text="@string/retry_message"
+ android:textSize="18sp"
+ android:textColor="?android:attr/textColorPrimary" />
+
+ <Button android:id="@+id/retryButton" android:layout_width="wrap_content"
+ android:layout_height="wrap_content" android:layout_gravity="center"
+ android:text="@string/retry" android:textSize="25sp" />
+
+</LinearLayout>
diff --git a/PicoLangInstallerEngGbr/res/layout/uninstall.xml b/PicoLangInstallerEngGbr/res/layout/uninstall.xml
new file mode 100755
index 0000000..bc0cd11
--- /dev/null
+++ b/PicoLangInstallerEngGbr/res/layout/uninstall.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical" android:layout_width="fill_parent"
+ android:layout_height="fill_parent">
+
+ <TextView android:paddingTop="25dip" android:paddingBottom="45dip"
+ android:layout_width="wrap_content" android:layout_height="wrap_content"
+ android:layout_gravity="center" android:text="@string/uninstall_message"
+ android:textSize="18sp"
+ android:textColor="?android:attr/textColorPrimary" />
+
+ <Button android:id="@+id/uninstallButton"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content" android:layout_gravity="center"
+ android:text="@string/uninstall" android:textSize="25sp" />
+
+</LinearLayout>