2015-11-25 01:45:53 +08:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-10-17 19:51:54 +08:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2015-09-26 20:25:18 +08:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
2015-10-17 19:51:54 +08:00
|
|
|
android:layout_height="wrap_content"
|
2015-11-25 01:45:53 +08:00
|
|
|
android:orientation="vertical"
|
|
|
|
tools:context="eu.kanade.mangafeed.ui.manga.MangaActivity">
|
2015-09-26 20:25:18 +08:00
|
|
|
|
2015-10-17 19:51:54 +08:00
|
|
|
<android.support.design.widget.AppBarLayout
|
|
|
|
android:id="@+id/appbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2015-12-01 01:45:45 +08:00
|
|
|
android:theme="@style/ThemeOverlay.AppTheme.Dark">
|
2015-10-17 19:51:54 +08:00
|
|
|
|
2015-12-18 23:41:16 +08:00
|
|
|
<include layout="@layout/toolbar" />
|
2015-10-17 19:51:54 +08:00
|
|
|
|
|
|
|
<android.support.design.widget.TabLayout
|
|
|
|
android:id="@+id/tabs"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2015-12-01 01:45:45 +08:00
|
|
|
android:theme="@style/ThemeOverlay.AppTheme.Dark"
|
2015-11-25 01:45:53 +08:00
|
|
|
app:tabGravity="fill"
|
2015-12-01 01:45:45 +08:00
|
|
|
android:background="@color/colorPrimary"
|
|
|
|
app:tabIndicatorColor="@color/white" />
|
2015-10-17 19:51:54 +08:00
|
|
|
|
|
|
|
</android.support.design.widget.AppBarLayout>
|
2015-09-28 18:42:16 +08:00
|
|
|
|
2015-10-17 19:51:54 +08:00
|
|
|
<android.support.v4.view.ViewPager
|
2015-10-21 06:04:04 +08:00
|
|
|
android:id="@+id/view_pager"
|
2015-09-29 20:40:36 +08:00
|
|
|
android:layout_width="match_parent"
|
2015-10-17 19:51:54 +08:00
|
|
|
android:layout_height="0px"
|
|
|
|
android:layout_weight="1"
|
2015-12-01 01:45:45 +08:00
|
|
|
android:background="@color/white" />
|
2015-09-26 20:25:18 +08:00
|
|
|
|
2015-10-17 19:51:54 +08:00
|
|
|
</LinearLayout>
|