summaryrefslogtreecommitdiffstats
path: root/picolanginstaller/res/layout/installing.xml
diff options
context:
space:
mode:
authorCharles Chen <clchen@google.com>2009-06-22 17:31:44 -0700
committerCharles Chen <clchen@google.com>2009-06-22 18:33:45 -0700
commit3fc71a14d6c0ca80a5fbc579de14a9a7b422e5c3 (patch)
tree81c9c820dfe19d796c86f01d2c2e08baf9d6e458 /picolanginstaller/res/layout/installing.xml
parent1284d937084a20b457c280259fff59391129509a (diff)
downloadexternal_svox-3fc71a14d6c0ca80a5fbc579de14a9a7b422e5c3.zip
external_svox-3fc71a14d6c0ca80a5fbc579de14a9a7b422e5c3.tar.gz
external_svox-3fc71a14d6c0ca80a5fbc579de14a9a7b422e5c3.tar.bz2
Adding PicoLangInstaller.
Diffstat (limited to 'picolanginstaller/res/layout/installing.xml')
-rwxr-xr-xpicolanginstaller/res/layout/installing.xml29
1 files changed, 29 insertions, 0 deletions
diff --git a/picolanginstaller/res/layout/installing.xml b/picolanginstaller/res/layout/installing.xml
new file mode 100755
index 0000000..117c333
--- /dev/null
+++ b/picolanginstaller/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>