2016-03-08 15:22:45 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-05-02 11:12:10 -04:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout 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"
|
2020-10-03 10:48:53 -04:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-07-10 10:44:54 -04:00
|
|
|
android:id="@+id/root_coordinator"
|
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-11-09 17:39:22 -05:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:fitsSystemWindows="true">
|
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"
|
2020-05-02 11:12:10 -04:00
|
|
|
android:theme="?attr/actionBarTheme"
|
2021-04-15 10:05:47 -04:00
|
|
|
app:layout_scrollFlags="scroll|enterAlways" />
|
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
|
|
|
|
2020-10-03 10:48:53 -04:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/downloaded_only"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@color/green"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:padding="4dp"
|
|
|
|
android:text="@string/label_downloaded_only"
|
|
|
|
android:textColor="@color/md_white_1000" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
2020-10-03 10:53:26 -04:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/incognito_mode"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@color/md_grey_800"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:padding="4dp"
|
|
|
|
android:text="@string/pref_incognito_mode"
|
|
|
|
android:textColor="@color/md_white_1000" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
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"
|
2020-05-02 11:12:10 -04:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
2016-03-08 15:22:45 -05:00
|
|
|
|
2020-07-10 10:44:54 -04:00
|
|
|
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
|
|
|
|
android:id="@+id/root_fab"
|
|
|
|
style="@style/Theme.Widget.FAB"
|
2020-10-18 10:21:03 -04:00
|
|
|
android:visibility="gone"
|
|
|
|
tools:icon="@drawable/ic_add_24dp"
|
|
|
|
tools:text="Action"
|
|
|
|
tools:visibility="visible" />
|
2020-07-10 10:44:54 -04: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"
|
2021-05-14 09:14:42 -04:00
|
|
|
app:itemIconTint="@color/nav_selector"
|
|
|
|
app:itemTextColor="@color/nav_selector"
|
2020-04-10 14:49:21 -04:00
|
|
|
app:labelVisibilityMode="labeled"
|
2020-09-26 19:27:39 -04:00
|
|
|
app:layout_insetEdge="bottom"
|
2021-05-14 09:14:42 -04:00
|
|
|
app:menu="@menu/main_nav" />
|
2017-05-06 09:49:39 -04:00
|
|
|
|
2020-05-02 11:12:10 -04:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|