diff options
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/feeditemlist.xml | 3 | ||||
-rw-r--r-- | res/layout/feedlist.xml | 4 | ||||
-rw-r--r-- | res/layout/listview_activity.xml | 12 | ||||
-rw-r--r-- | res/layout/miroguide_category.xml | 10 | ||||
-rw-r--r-- | res/layout/organize_queue.xml | 2 |
5 files changed, 19 insertions, 12 deletions
diff --git a/res/layout/feeditemlist.xml b/res/layout/feeditemlist.xml index c2c51ba63..932cfb051 100644 --- a/res/layout/feeditemlist.xml +++ b/res/layout/feeditemlist.xml @@ -16,7 +16,6 @@ android:layout_width="match_parent" android:layout_height="match_parent" android:layout_gravity="center" - android:gravity="center" - android:text="@string/no_items_label" /> + android:gravity="center"/> </LinearLayout>
\ No newline at end of file diff --git a/res/layout/feedlist.xml b/res/layout/feedlist.xml index b88e2eb6e..0557d8aea 100644 --- a/res/layout/feedlist.xml +++ b/res/layout/feedlist.xml @@ -15,7 +15,5 @@ android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center" - android:layout_gravity="center" - android:text="@string/no_feeds_label" /> - + android:layout_gravity="center"/> </LinearLayout>
\ No newline at end of file diff --git a/res/layout/listview_activity.xml b/res/layout/listview_activity.xml new file mode 100644 index 000000000..b276f506c --- /dev/null +++ b/res/layout/listview_activity.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8"?> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:orientation="vertical" + android:layout_width="match_parent" + android:layout_height="match_parent"> + <ListView + android:id="@+id/listview" + android:layout_width="match_parent" + android:layout_height="match_parent"/> + +</LinearLayout>
\ No newline at end of file diff --git a/res/layout/miroguide_category.xml b/res/layout/miroguide_category.xml index 1ab614050..b6f9f9418 100644 --- a/res/layout/miroguide_category.xml +++ b/res/layout/miroguide_category.xml @@ -5,17 +5,15 @@ android:layout_height="match_parent" android:orientation="vertical" > - <com.viewpagerindicator.TabPageIndicator - android:id="@+id/tabs" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - /> - <android.support.v4.view.ViewPager android:id="@+id/viewpager" android:layout_width="match_parent" android:layout_height="0px" android:layout_weight="1"> + <android.support.v4.view.PagerTabStrip + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="top" /> </android.support.v4.view.ViewPager> </LinearLayout> diff --git a/res/layout/organize_queue.xml b/res/layout/organize_queue.xml index 62b2e980c..3982529a2 100644 --- a/res/layout/organize_queue.xml +++ b/res/layout/organize_queue.xml @@ -1,5 +1,5 @@ <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:dslv="http://schemas.android.com/apk/res/de.danoeh.antennapod" + xmlns:dslv="http://schemas.android.com/apk/res-auto" android:layout_width="fill_parent" android:layout_height="fill_parent" > |