summaryrefslogtreecommitdiff
path: root/res/layout/headlines_fragment.xml
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-11-23 13:55:05 +0300
committerAndrew Dolgov <[email protected]>2011-11-23 13:55:05 +0300
commite0c40e5fb8b9c9ca72a5bb306593565c22e1f804 (patch)
tree2a8db7c2042b1fc0783b6e25824c0e942d430cb0 /res/layout/headlines_fragment.xml
parent2250b86e3b00ffd8bde4b65285ef06d2581f6a80 (diff)
implement headlines view
Diffstat (limited to 'res/layout/headlines_fragment.xml')
-rw-r--r--res/layout/headlines_fragment.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/res/layout/headlines_fragment.xml b/res/layout/headlines_fragment.xml
index ffcad32c..1828adb2 100644
--- a/res/layout/headlines_fragment.xml
+++ b/res/layout/headlines_fragment.xml
@@ -4,6 +4,8 @@
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:id="@+id/headlines_fragment">
<ListView android:layout_height="match_parent" android:layout_width="match_parent" android:id="@+id/headlines" android:background="#fafafa"></ListView>
- <TextView android:layout_width="wrap_content" android:textAppearance="?android:attr/textAppearanceLarge" android:layout_height="wrap_content" android:text="@string/no_unread_headlines" android:layout_gravity="center" android:id="@+id/no_unread_headlines"></TextView>
-
+ <LinearLayout android:id="@+id/loading_container" android:gravity="center" android:layout_height="match_parent" android:layout_width="match_parent">
+ <ProgressBar android:layout_width="wrap_content" style="?android:attr/progressBarStyleLarge" android:id="@+id/loading_progress" android:layout_height="wrap_content"></ProgressBar>
+ <TextView android:layout_width="wrap_content" android:textAppearance="?android:attr/textAppearanceLarge" android:id="@+id/loading_message" android:layout_height="wrap_content" ></TextView>
+ </LinearLayout>
</FrameLayout>