summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main/res/layout/activity_master_phone.xml
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2020-06-03 12:47:08 +0300
committerAndrew Dolgov <[email protected]>2020-06-03 12:47:08 +0300
commit3f24a5d8694b60515b26d22a8a8d55834d53442f (patch)
treeb17d84449701bb97374eef3d8522fbd9e9fc5ee3 /org.fox.ttrss/src/main/res/layout/activity_master_phone.xml
parent453aef675bea16bfc6ea8c28753e66148b57fa5d (diff)
parent5c2759c358e4bf5506d76662a612ec43e6e9e5d5 (diff)
Merge branch 'master' of git.fakecake.org:tt-rss-android
Diffstat (limited to 'org.fox.ttrss/src/main/res/layout/activity_master_phone.xml')
-rw-r--r--org.fox.ttrss/src/main/res/layout/activity_master_phone.xml44
1 files changed, 44 insertions, 0 deletions
diff --git a/org.fox.ttrss/src/main/res/layout/activity_master_phone.xml b/org.fox.ttrss/src/main/res/layout/activity_master_phone.xml
new file mode 100644
index 00000000..de3db618
--- /dev/null
+++ b/org.fox.ttrss/src/main/res/layout/activity_master_phone.xml
@@ -0,0 +1,44 @@
+ <androidx.drawerlayout.widget.DrawerLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:fitsSystemWindows="true"
+ android:id="@+id/headlines_drawer"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent">
+
+ <FrameLayout
+ android:fitsSystemWindows="true"
+ android:animateLayoutChanges="true"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+ <FrameLayout
+ android:id="@+id/headlines_fragment"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:background="?headlinesBackground" />
+
+ <include layout="@layout/toolbar" android:id="@+id/toolbar" />
+
+ </FrameLayout>
+
+ <org.fox.ttrss.util.ScrimInsetsFrameLayout
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ android:id="@+id/scrimInsetsFrameLayout"
+ android:layout_width="300dp"
+ android:layout_height="match_parent"
+ android:layout_gravity="start"
+ android:background="@android:color/white"
+ android:elevation="10dp"
+ android:fitsSystemWindows="true"
+ app:insetForeground="#4000">
+
+ <FrameLayout
+ android:id="@+id/feeds_fragment"
+ android:layout_width="match_parent"
+ android:background="?feedlistBackground"
+ android:layout_height="match_parent" >
+ </FrameLayout>
+
+ </org.fox.ttrss.util.ScrimInsetsFrameLayout>
+
+ </androidx.drawerlayout.widget.DrawerLayout>