summaryrefslogtreecommitdiff
path: root/res/layout/feeds_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/feeds_fragment.xml
parent2250b86e3b00ffd8bde4b65285ef06d2581f6a80 (diff)
implement headlines view
Diffstat (limited to 'res/layout/feeds_fragment.xml')
-rw-r--r--res/layout/feeds_fragment.xml13
1 files changed, 6 insertions, 7 deletions
diff --git a/res/layout/feeds_fragment.xml b/res/layout/feeds_fragment.xml
index f4abec8a..c66895b3 100644
--- a/res/layout/feeds_fragment.xml
+++ b/res/layout/feeds_fragment.xml
@@ -1,12 +1,11 @@
<?xml version="1.0" encoding="utf-8" ?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
- <LinearLayout android:layout_width="match_parent" android:id="@+id/linearLayout1" android:gravity="center" android:layout_height="match_parent">
- <ProgressBar android:id="@+id/loading_progress" android:layout_height="wrap_content" android:layout_width="wrap_content" style="?android:attr/progressBarStyleLarge"></ProgressBar>
- <TextView android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/loading_message" android:textAppearance="?android:attr/textAppearanceLarge" android:text="@string/loading_message"></TextView>
- </LinearLayout>
- <ListView android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/feeds"></ListView>
+ android:layout_height="fill_parent" android:id="@+id/feeds_container" android:layout_width="match_parent">
+ <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>
+ <ListView android:id="@+id/feeds" android:layout_height="match_parent" android:layout_width="match_parent"></ListView>
</FrameLayout>