summaryrefslogtreecommitdiff
path: root/res/layout
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-09-20 22:57:40 +0400
committerAndrew Dolgov <[email protected]>2012-09-20 22:57:40 +0400
commitaf5bcf926cb487aae7812a911684a9477ceb2436 (patch)
tree26699f7be4c7ad42bc72e717dc1c7a06ea38c6ec /res/layout
parent41c115471a0a65431ff1869ab7d6abab5a11e044 (diff)
use delayed loading for several containers in tablet mode to visually
speed things up
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/loading_fragment.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/res/layout/loading_fragment.xml b/res/layout/loading_fragment.xml
new file mode 100644
index 00000000..ab820170
--- /dev/null
+++ b/res/layout/loading_fragment.xml
@@ -0,0 +1,13 @@
+
+ <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent" >
+
+ <ProgressBar
+ android:id="@+id/progressBar1"
+ style="?android:attr/progressBarStyleLarge"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center" />
+
+ </FrameLayout>