tt-rss-android/org.fox.ttrss/src/main/res/layout/headlines_articles.xml

28 lines
989 B
XML
Raw Normal View History

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2014-10-16 20:06:56 +00:00
android:id="@+id/headlines"
android:fitsSystemWindows="true"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
2014-10-16 20:06:56 +00:00
<android.support.v4.widget.DrawerLayout
android:id="@+id/headlines_drawer"
2014-10-16 20:06:56 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent">
2014-10-16 20:06:56 +00:00
<FrameLayout
android:id="@+id/article_fragment"
android:layout_width="match_parent"
2014-10-16 20:06:56 +00:00
android:layout_height="match_parent"
android:background="?articleBackground">
2014-10-16 20:06:56 +00:00
</FrameLayout>
<FrameLayout
android:id="@+id/headlines_fragment"
2014-10-16 20:06:56 +00:00
android:layout_height="match_parent"
android:layout_width="240dp"
android:layout_gravity="start"
android:background="?headlinesBackgroundSolid">
2014-10-16 20:06:56 +00:00
</FrameLayout>
</android.support.v4.widget.DrawerLayout>
2014-10-16 20:06:56 +00:00
</FrameLayout>