summaryrefslogtreecommitdiff
path: root/org.fox.ttcomics/src/main/res/layout/activity_main.xml
blob: 442434a27ac2a2d8065f6bd15b9541b91134d097 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:fitsSystemWindows="true"
    android:orientation="vertical"
    android:layout_width="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_height="match_parent">

    <include layout="@layout/toolbar" android:id="@+id/toolbar" />

    <it.neokree.materialtabs.MaterialTabHost
        android:elevation="4dp"
        android:id="@+id/materialTabHost"
        android:layout_width="match_parent"
        android:layout_height="48dp"
        app:textColor="@android:color/primary_text_dark"
        app:primaryColor="?colorPrimary"
        app:accentColor="?colorAccent" />

    <FrameLayout
        android:id="@+id/comics_list"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

    </FrameLayout>
  
</LinearLayout>