2016-03-08 15:22:45 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-04-10 14:49:21 -04:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-12-30 08:10:31 -05:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2015-09-24 11:27:43 -04:00
|
|
|
android:layout_width="match_parent"
|
2015-11-24 12:45:53 -05:00
|
|
|
android:layout_height="match_parent"
|
2020-04-10 14:49:21 -04:00
|
|
|
android:orientation="vertical">
|
2015-09-24 11:27:43 -04:00
|
|
|
|
2020-04-10 14:49:21 -04:00
|
|
|
<eu.kanade.tachiyomi.widget.ElevationAppBarLayout
|
|
|
|
android:id="@+id/appbar"
|
2015-12-25 18:07:45 -05:00
|
|
|
android:layout_width="match_parent"
|
2020-04-10 14:49:21 -04:00
|
|
|
android:layout_height="wrap_content">
|
2015-12-25 18:07:45 -05:00
|
|
|
|
2020-04-10 14:49:21 -04:00
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/toolbar"
|
2016-03-08 15:22:45 -05:00
|
|
|
android:layout_width="match_parent"
|
2020-04-10 14:49:21 -04:00
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:background="?attr/colorPrimary"
|
|
|
|
android:theme="?attr/actionBarTheme" />
|
2015-12-25 18:07:45 -05:00
|
|
|
|
2020-04-10 14:49:21 -04:00
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
|
|
android:id="@+id/tabs"
|
2020-04-18 19:05:19 -04:00
|
|
|
style="@style/Theme.Widget.Tabs"
|
2020-02-25 19:40:14 -05:00
|
|
|
android:layout_width="match_parent"
|
2020-04-18 19:05:19 -04:00
|
|
|
android:layout_height="wrap_content" />
|
2020-04-10 14:49:21 -04:00
|
|
|
|
|
|
|
</eu.kanade.tachiyomi.widget.ElevationAppBarLayout>
|
|
|
|
|
|
|
|
<com.bluelinelabs.conductor.ChangeHandlerFrameLayout
|
|
|
|
android:id="@+id/controller_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1" />
|
2016-03-08 15:22:45 -05:00
|
|
|
|
2020-04-10 14:49:21 -04:00
|
|
|
<com.google.android.material.bottomnavigation.BottomNavigationView
|
|
|
|
android:id="@+id/bottom_nav"
|
|
|
|
style="@style/Widget.MaterialComponents.BottomNavigationView.Colored"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom"
|
|
|
|
app:labelVisibilityMode="labeled"
|
|
|
|
app:menu="@menu/bottom_nav" />
|
2017-05-06 09:49:39 -04:00
|
|
|
|
2020-04-10 14:49:21 -04:00
|
|
|
</LinearLayout>
|