summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main/res
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-06-05 13:30:03 +0300
committerAndrew Dolgov <[email protected]>2015-06-05 13:30:03 +0300
commitecbd8bd41ab3626ea91b66d0e15aad3d2aaeb82d (patch)
treed248a67a29148040a662ba246de7109f2372d0d3 /org.fox.ttrss/src/main/res
parentcd4f1dd37f3039d2b06e646e1fd78958e28766b6 (diff)
reduce toolbar width on sw600dp-land layout
Diffstat (limited to 'org.fox.ttrss/src/main/res')
-rwxr-xr-xorg.fox.ttrss/src/main/res/layout-sw600dp-land/headlines.xml60
1 files changed, 27 insertions, 33 deletions
diff --git a/org.fox.ttrss/src/main/res/layout-sw600dp-land/headlines.xml b/org.fox.ttrss/src/main/res/layout-sw600dp-land/headlines.xml
index 9c4b76f1..598fd987 100755
--- a/org.fox.ttrss/src/main/res/layout-sw600dp-land/headlines.xml
+++ b/org.fox.ttrss/src/main/res/layout-sw600dp-land/headlines.xml
@@ -1,33 +1,21 @@
-<RelativeLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/main"
- android:fitsSystemWindows="true"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
-
- <include layout="@layout/actionbar_toolbar" android:id="@+id/actionbar_toolbar" />
-
-<LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:layout_below="@+id/actionbar_toolbar">
-
- <FrameLayout
- android:id="@+id/sw600dp_anchor"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:visibility="gone" >
- </FrameLayout>
-
<LinearLayout
+ android:fitsSystemWindows="true"
+ xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragment_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
android:baselineAligned="false"
android:orientation="horizontal" >
<FrameLayout
+ android:id="@+id/sw600dp_anchor"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:visibility="gone" >
+ </FrameLayout>
+
+
+ <FrameLayout
android:id="@+id/feeds_fragment"
android:layout_width="0dp"
android:layout_height="match_parent"
@@ -35,15 +23,21 @@
android:background="?feedlistBackground" >
</FrameLayout>
- <FrameLayout
- android:elevation="4dp"
- android:id="@+id/headlines_fragment"
+ <RelativeLayout
android:layout_width="0dp"
- android:layout_height="match_parent"
android:layout_weight="0.75"
- android:background="?headlinesBackground" >
- </FrameLayout>
- </LinearLayout>
+ android:layout_height="match_parent">
+
+ <include layout="@layout/actionbar_toolbar" android:id="@+id/actionbar_toolbar" />
-</LinearLayout>
-</RelativeLayout> \ No newline at end of file
+ <FrameLayout
+ android:id="@+id/headlines_fragment"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:background="?headlinesBackground"
+ android:layout_below="@+id/actionbar_toolbar">
+ </FrameLayout>
+
+ </RelativeLayout>
+
+ </LinearLayout>