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