summaryrefslogtreecommitdiff
path: root/res/layout/main.xml
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-01-17 18:43:11 +0300
committerAndrew Dolgov <[email protected]>2012-01-17 18:43:11 +0300
commit56d0be3e0a8075b07e8daa86f67e67081d26aa60 (patch)
tree5f992a7f4446b558e885a81e994e8bebf2434824 /res/layout/main.xml
parentca5f7ed95bd5be594ecd76629e0ff6a7937ac90e (diff)
move libraries to libs/
properly detect xlarge screens update ACP library link against API 14 (ICS) various fixes for ICS bump version
Diffstat (limited to 'res/layout/main.xml')
-rw-r--r--res/layout/main.xml19
1 files changed, 11 insertions, 8 deletions
diff --git a/res/layout/main.xml b/res/layout/main.xml
index a0350695..e91993fd 100644
--- a/res/layout/main.xml
+++ b/res/layout/main.xml
@@ -2,23 +2,26 @@
android:id="@+id/main"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
-
+
<LinearLayout
android:id="@+id/loading_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
- android:gravity="center" >
-
- <ProgressBar
- android:id="@+id/loading_progress"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
+ android:gravity="center"
+ android:orientation="vertical" >
<TextView
android:id="@+id/loading_message"
- android:layout_width="wrap_content"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
+ android:gravity="center_horizontal"
android:text="@string/loading_message" />
+
+ <ProgressBar
+ android:id="@+id/loading_progress"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content" />
+
</LinearLayout>
<FrameLayout