2016-03-08 20:22:45 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-21 23:43:50 +00:00
|
|
|
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-12-30 13:10:31 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-02-21 23:43:50 +00:00
|
|
|
android:id="@+id/drawer"
|
2015-09-24 15:27:43 +00:00
|
|
|
android:layout_width="match_parent"
|
2015-11-24 17:45:53 +00:00
|
|
|
android:layout_height="match_parent"
|
2016-03-08 20:22:45 +00:00
|
|
|
android:fitsSystemWindows="true">
|
2015-09-24 15:27:43 +00:00
|
|
|
|
2017-05-06 13:49:39 +00:00
|
|
|
<LinearLayout
|
2015-12-25 23:07:45 +00:00
|
|
|
android:layout_width="match_parent"
|
2020-02-21 23:43:50 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2015-12-25 23:07:45 +00:00
|
|
|
|
2017-01-22 22:13:07 +00:00
|
|
|
<eu.kanade.tachiyomi.widget.ElevationAppBarLayout
|
2016-03-08 20:22:45 +00:00
|
|
|
android:id="@+id/appbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
2015-12-25 23:07:45 +00:00
|
|
|
|
2020-03-12 23:14:43 +00:00
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
2017-05-25 10:16:58 +00:00
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:background="?attr/colorPrimary"
|
2020-02-21 23:43:50 +00:00
|
|
|
android:theme="?attr/actionBarTheme" />
|
2016-03-08 20:22:45 +00:00
|
|
|
|
2020-01-05 16:29:27 +00:00
|
|
|
<com.google.android.material.tabs.TabLayout
|
2016-04-13 14:42:59 +00:00
|
|
|
android:id="@+id/tabs"
|
2020-03-11 23:08:57 +00:00
|
|
|
style="@style/Widget.MaterialComponents.TabLayout.Colored"
|
2016-04-13 14:42:59 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-02-21 23:43:50 +00:00
|
|
|
app:tabGravity="center"
|
2020-03-15 16:56:00 +00:00
|
|
|
app:tabIndicator="@drawable/tab_indicator"
|
|
|
|
app:tabIndicatorFullWidth="false"
|
|
|
|
app:tabIndicatorHeight="3dp"
|
2020-01-19 21:26:38 +00:00
|
|
|
app:tabInlineLabel="true"
|
2020-02-21 23:43:50 +00:00
|
|
|
app:tabMinWidth="75dp"
|
|
|
|
app:tabMode="scrollable" />
|
2016-04-13 14:42:59 +00:00
|
|
|
|
2017-01-22 22:13:07 +00:00
|
|
|
</eu.kanade.tachiyomi.widget.ElevationAppBarLayout>
|
2015-09-25 10:44:11 +00:00
|
|
|
|
2017-05-06 13:49:39 +00:00
|
|
|
<com.bluelinelabs.conductor.ChangeHandlerFrameLayout
|
|
|
|
android:id="@+id/controller_container"
|
2015-09-24 15:27:43 +00:00
|
|
|
android:layout_width="match_parent"
|
2020-02-26 00:40:14 +00:00
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1" />
|
2015-09-24 15:27:43 +00:00
|
|
|
|
2020-02-26 00:40:14 +00:00
|
|
|
<com.google.android.material.bottomnavigation.BottomNavigationView
|
|
|
|
android:id="@+id/bottom_nav"
|
2020-03-11 23:08:57 +00:00
|
|
|
style="@style/Widget.MaterialComponents.BottomNavigationView.Colored"
|
2020-02-26 00:40:14 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom"
|
2020-02-27 23:30:51 +00:00
|
|
|
app:labelVisibilityMode="labeled"
|
2020-02-26 00:40:14 +00:00
|
|
|
app:menu="@menu/bottom_nav" />
|
2016-03-08 20:22:45 +00:00
|
|
|
|
2020-02-26 00:40:14 +00:00
|
|
|
</LinearLayout>
|
2017-05-06 13:49:39 +00:00
|
|
|
|
2020-01-05 16:29:27 +00:00
|
|
|
</androidx.drawerlayout.widget.DrawerLayout>
|