mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-13 01:15:06 +01:00
25 lines
831 B
XML
25 lines
831 B
XML
<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.mangafeed.ui.manga.MangaActivity">
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
android:id="@+id/appbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<include layout="@layout/toolbar" />
|
|
|
|
<include layout="@layout/tab_layout" />
|
|
|
|
</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> |