summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main/res/layout/headlines_articles.xml
blob: 06fb8b574a9291241b3096df53ae0a8f97bd1200 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/headlines"
    android:fitsSystemWindows="true"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <FrameLayout
        android:id="@+id/article_fragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="?articleBackground">
    </FrameLayout>

    <FrameLayout
        android:id="@+id/headlines_fragment"
        android:visibility="gone"
        android:layout_height="0dp"
        android:layout_width="0dp"
        android:background="?headlinesBackgroundSolid">
    </FrameLayout>

</FrameLayout>