2016-05-21 15:39:41 +02:00
|
|
|
<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">
|
2015-10-17 13:51:54 +02:00
|
|
|
|
2016-05-21 15:39:41 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2015-10-17 13:51:54 +02:00
|
|
|
|
2016-05-21 15:39:41 +02:00
|
|
|
<android.support.design.widget.AppBarLayout
|
|
|
|
android:id="@+id/appbar"
|
2016-04-13 16:42:59 +02:00
|
|
|
android:layout_width="match_parent"
|
2016-05-21 15:39:41 +02:00
|
|
|
android:layout_height="wrap_content">
|
2015-10-17 13:51:54 +02:00
|
|
|
|
2016-05-21 15:39:41 +02:00
|
|
|
<include layout="@layout/toolbar"/>
|
2015-09-28 12:42:16 +02:00
|
|
|
|
2016-05-21 15:39:41 +02:00
|
|
|
<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"
|
2016-12-20 16:54:56 +01:00
|
|
|
android:theme="@style/Theme.ActionBar.Tab"
|
|
|
|
app:tabGravity="fill"
|
|
|
|
app:tabIndicatorColor="@android:color/white"/>
|
2016-05-21 15:39:41 +02:00
|
|
|
|
|
|
|
</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>
|
2015-09-26 14:25:18 +02:00
|
|
|
|
2016-05-21 15:39:41 +02:00
|
|
|
</android.support.design.widget.CoordinatorLayout>
|