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

28 lines
950 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:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fitsSystemWindows="true">
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/headlines_fragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?smallScreenBackground"></FrameLayout>
<FrameLayout
android:id="@+id/feeds_fragment"
android:layout_width="240dp"
android:layout_gravity="start"
android:background="?smallScreenBackground"
android:layout_height="match_parent" >
</FrameLayout>
</android.support.v4.widget.DrawerLayout>
2014-10-16 20:06:56 +00:00
</FrameLayout>