summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main/res/layout-sw600dp-port
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2014-10-31 14:11:47 +0300
committerAndrew Dolgov <[email protected]>2014-10-31 14:11:47 +0300
commitacdcf759a028d36d1af09639619410e392baf14c (patch)
treeebdc430fd7a4b904030811d7205653c895909823 /org.fox.ttrss/src/main/res/layout-sw600dp-port
parent8a15540c6134adf6fa6f0244f432adbf9abc1acf (diff)
implement drawer navigation for headlines activity instead of old hideable sidebar
Diffstat (limited to 'org.fox.ttrss/src/main/res/layout-sw600dp-port')
-rw-r--r--org.fox.ttrss/src/main/res/layout-sw600dp-port/headlines_articles.xml26
1 files changed, 12 insertions, 14 deletions
diff --git a/org.fox.ttrss/src/main/res/layout-sw600dp-port/headlines_articles.xml b/org.fox.ttrss/src/main/res/layout-sw600dp-port/headlines_articles.xml
index 4809a230..02be7e49 100644
--- a/org.fox.ttrss/src/main/res/layout-sw600dp-port/headlines_articles.xml
+++ b/org.fox.ttrss/src/main/res/layout-sw600dp-port/headlines_articles.xml
@@ -12,27 +12,25 @@
android:visibility="gone" >
</FrameLayout>
- <LinearLayout
- android:id="@+id/fragment_container"
+ <android.support.v4.widget.DrawerLayout
+ android:id="@+id/headlines_drawer"
android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical" >
+ android:layout_height="match_parent">
<FrameLayout
- android:id="@+id/headlines_fragment"
+ android:id="@+id/article_fragment"
android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="0.3"
- android:background="?headlinesBackgroundSolid" >
+ android:layout_height="match_parent"
+ android:background="?articleBackground">
</FrameLayout>
<FrameLayout
- android:id="@+id/article_fragment"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="0.7"
- android:background="?articleBackground" >
+ android:id="@+id/headlines_fragment"
+ android:layout_height="match_parent"
+ android:layout_width="300dp"
+ android:layout_gravity="start"
+ android:background="?headlinesBackgroundSolid">
</FrameLayout>
- </LinearLayout>
+ </android.support.v4.widget.DrawerLayout>
</LinearLayout> \ No newline at end of file