summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main/res/layout/feeds_fragment.xml
diff options
context:
space:
mode:
Diffstat (limited to 'org.fox.ttrss/src/main/res/layout/feeds_fragment.xml')
-rwxr-xr-xorg.fox.ttrss/src/main/res/layout/feeds_fragment.xml32
1 files changed, 19 insertions, 13 deletions
diff --git a/org.fox.ttrss/src/main/res/layout/feeds_fragment.xml b/org.fox.ttrss/src/main/res/layout/feeds_fragment.xml
index de23ccad..0c2619fc 100755
--- a/org.fox.ttrss/src/main/res/layout/feeds_fragment.xml
+++ b/org.fox.ttrss/src/main/res/layout/feeds_fragment.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/feeds_fragment"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
@@ -7,15 +7,18 @@
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/feeds_swipe_container"
android:layout_width="match_parent"
- android:layout_height="match_parent">
+ android:layout_height="match_parent"
+ android:layout_below="@+id/feeds_loading_bar">
- <ListView
- android:id="@+id/feeds"
+ <ListView
+ android:id="@+id/feeds"
android:dividerHeight="0dp"
android:divider="@null"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
- </ListView>
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_alignParentLeft="true"
+ android:layout_alignParentStart="true">
+ </ListView>
</android.support.v4.widget.SwipeRefreshLayout>
<TextView
@@ -28,11 +31,14 @@
android:visibility="gone" >
</TextView>
- <ProgressBar
- style="?android:attr/progressBarStyleLarge"
- android:visibility="gone"
- android:layout_width="wrap_content"
+ <!-- <ProgressBar
+ style="?android:attr/progressBarStyleHorizontal"
+ android:visibility="invisible"
+ android:indeterminate="true"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/feeds_loading_bar"
- android:layout_gravity="center" />
-</FrameLayout> \ No newline at end of file
+ android:layout_gravity="center" /> -->
+
+
+</RelativeLayout> \ No newline at end of file