|
@@ -1,32 +1,41 @@
|
|
|
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
- xmlns:tools="http://schemas.android.com/tools"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:orientation="vertical"
|
|
|
- tools:context="eu.kanade.tachiyomi.ui.manga.MangaActivity">
|
|
|
-
|
|
|
- <android.support.design.widget.AppBarLayout
|
|
|
- android:id="@+id/appbar"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content">
|
|
|
+<android.support.design.widget.CoordinatorLayout
|
|
|
+ xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:tools="http://schemas.android.com/tools"
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
+ tools:context="eu.kanade.tachiyomi.ui.manga.MangaActivity"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:fitsSystemWindows="true">
|
|
|
|
|
|
- <include layout="@layout/toolbar"/>
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
|
- <android.support.design.widget.TabLayout
|
|
|
- xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
- xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
- android:id="@+id/tabs"
|
|
|
+ <android.support.design.widget.AppBarLayout
|
|
|
+ android:id="@+id/appbar"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:theme="@style/Theme.ActionBar.Tab.Filled"
|
|
|
- app:tabIndicatorColor="@android:color/white" />
|
|
|
+ android:layout_height="wrap_content">
|
|
|
|
|
|
- </android.support.design.widget.AppBarLayout>
|
|
|
+ <include layout="@layout/toolbar"/>
|
|
|
|
|
|
- <android.support.v4.view.ViewPager
|
|
|
- android:id="@+id/view_pager"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="0px"
|
|
|
- android:layout_weight="1"/>
|
|
|
+ <android.support.design.widget.TabLayout
|
|
|
+ xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
+ android:id="@+id/tabs"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:theme="@style/Theme.ActionBar.Tab.Filled"
|
|
|
+ app:tabIndicatorColor="@android:color/white" />
|
|
|
+
|
|
|
+ </android.support.design.widget.AppBarLayout>
|
|
|
+
|
|
|
+ <android.support.v4.view.ViewPager
|
|
|
+ android:id="@+id/view_pager"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="0px"
|
|
|
+ android:layout_weight="1"/>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
|
|
|
-</LinearLayout>
|
|
|
+</android.support.design.widget.CoordinatorLayout>
|