summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main/res/layout-sw600dp-land/activity_master.xml
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-06-10 19:40:08 +0300
committerAndrew Dolgov <[email protected]>2015-06-10 19:40:08 +0300
commit4acc9ac37e3363552cebc7a37e16e254f9438f4d (patch)
tree173141de59d27c1a92e4c7f796036411a18427af /org.fox.ttrss/src/main/res/layout-sw600dp-land/activity_master.xml
parentdffc737a93f90ec866cb9256e9768b08b13de93c (diff)
further refactoring
Diffstat (limited to 'org.fox.ttrss/src/main/res/layout-sw600dp-land/activity_master.xml')
-rw-r--r--org.fox.ttrss/src/main/res/layout-sw600dp-land/activity_master.xml44
1 files changed, 44 insertions, 0 deletions
diff --git a/org.fox.ttrss/src/main/res/layout-sw600dp-land/activity_master.xml b/org.fox.ttrss/src/main/res/layout-sw600dp-land/activity_master.xml
new file mode 100644
index 00000000..c89f3baa
--- /dev/null
+++ b/org.fox.ttrss/src/main/res/layout-sw600dp-land/activity_master.xml
@@ -0,0 +1,44 @@
+<RelativeLayout
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:fitsSystemWindows="true"
+ xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <include layout="@layout/toolbar" android:id="@+id/toolbar" />
+
+ <LinearLayout
+ android:id="@+id/fragment_container"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:baselineAligned="false"
+ android:orientation="horizontal"
+ android:layout_below="@+id/toolbar">
+
+ <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"
+ android:layout_weight="0.25"
+ android:background="?feedlistBackground" >
+ </FrameLayout>
+
+ <FrameLayout
+ android:layout_width="0dp"
+ android:layout_weight="0.75"
+ android:id="@+id/headlines_fragment"
+ android:background="?headlinesBackground"
+ android:elevation="4dp"
+ android:layout_height="match_parent">
+ </FrameLayout>
+
+ </LinearLayout>
+
+
+</RelativeLayout>