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

24 lines
799 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:animateLayoutChanges="true"
2014-10-16 20:06:56 +00:00
android:layout_width="fill_parent"
android:layout_height="fill_parent">
2014-10-16 20:06:56 +00:00
<FrameLayout
android:id="@+id/article_fragment"
2014-10-16 20:06:56 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?articleBackground">
</FrameLayout>
2014-10-16 20:06:56 +00:00
<FrameLayout
android:id="@+id/headlines_fragment"
android:visibility="gone"
android:layout_height="0dp"
android:layout_width="0dp"
android:background="?headlinesBackground">
</FrameLayout>
2014-10-16 20:06:56 +00:00
2015-06-10 16:24:24 +00:00
<include layout="@layout/toolbar" android:id="@+id/toolbar" />
</FrameLayout>