2016-03-08 21:22:45 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-22 00:43:50 +01:00
|
|
|
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-12-30 14:10:31 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-02-22 00:43:50 +01:00
|
|
|
android:id="@+id/drawer"
|
2015-09-24 17:27:43 +02:00
|
|
|
android:layout_width="match_parent"
|
2015-11-24 18:45:53 +01:00
|
|
|
android:layout_height="match_parent"
|
2016-03-08 21:22:45 +01:00
|
|
|
android:fitsSystemWindows="true">
|
2015-09-24 17:27:43 +02:00
|
|
|
|
2017-05-06 15:49:39 +02:00
|
|
|
<LinearLayout
|
2016-03-08 21:22:45 +01:00
|
|
|
android:id="@+id/main_content"
|
2015-12-26 00:07:45 +01:00
|
|
|
android:layout_width="match_parent"
|
2020-02-22 00:43:50 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2015-12-26 00:07:45 +01:00
|
|
|
|
2017-01-22 23:13:07 +01:00
|
|
|
<eu.kanade.tachiyomi.widget.ElevationAppBarLayout
|
2016-03-08 21:22:45 +01:00
|
|
|
android:id="@+id/appbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
2015-12-26 00:07:45 +01:00
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
<androidx.appcompat.widget.Toolbar
|
2017-05-25 12:16:58 +02:00
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:background="?attr/colorPrimary"
|
2020-02-22 00:43:50 +01:00
|
|
|
android:theme="?attr/actionBarTheme" />
|
2016-03-08 21:22:45 +01:00
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
<com.google.android.material.tabs.TabLayout
|
2016-04-13 16:42:59 +02:00
|
|
|
android:id="@+id/tabs"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:theme="@style/Theme.ActionBar.Tab"
|
2020-02-22 00:43:50 +01:00
|
|
|
app:tabGravity="center"
|
2016-04-13 16:42:59 +02:00
|
|
|
app:tabIndicatorColor="@android:color/white"
|
2020-01-19 22:26:38 +01:00
|
|
|
app:tabInlineLabel="true"
|
2020-02-22 00:43:50 +01:00
|
|
|
app:tabMinWidth="75dp"
|
|
|
|
app:tabMode="scrollable" />
|
2016-04-13 16:42:59 +02:00
|
|
|
|
2017-01-22 23:13:07 +01:00
|
|
|
</eu.kanade.tachiyomi.widget.ElevationAppBarLayout>
|
2015-09-25 12:44:11 +02:00
|
|
|
|
2017-05-06 15:49:39 +02:00
|
|
|
<com.bluelinelabs.conductor.ChangeHandlerFrameLayout
|
|
|
|
android:id="@+id/controller_container"
|
2015-09-24 17:27:43 +02:00
|
|
|
android:layout_width="match_parent"
|
2017-05-06 15:49:39 +02:00
|
|
|
android:layout_height="match_parent" />
|
2015-09-24 17:27:43 +02:00
|
|
|
|
2017-05-06 15:49:39 +02:00
|
|
|
</LinearLayout>
|
2016-03-08 21:22:45 +01:00
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
<com.google.android.material.navigation.NavigationView
|
2016-03-08 21:22:45 +01:00
|
|
|
android:id="@+id/nav_view"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="start"
|
|
|
|
android:fitsSystemWindows="true"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:theme="?attr/navigation_view_theme"
|
2016-03-08 21:22:45 +01:00
|
|
|
app:headerLayout="@layout/navigation_header"
|
2020-02-22 00:43:50 +01:00
|
|
|
app:menu="@menu/menu_navigation" />
|
2017-05-06 15:49:39 +02:00
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
</androidx.drawerlayout.widget.DrawerLayout>
|