2016-03-09 04:22:45 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-08-19 21:12:52 +08:00
|
|
|
<eu.kanade.tachiyomi.widget.TachiyomiCoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-12-30 21:10:31 +08:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2021-05-20 11:18:24 +08:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-07-10 22:44:54 +08:00
|
|
|
android:id="@+id/root_coordinator"
|
2015-09-24 23:27:43 +08:00
|
|
|
android:layout_width="match_parent"
|
2015-11-25 01:45:53 +08:00
|
|
|
android:layout_height="match_parent"
|
2020-04-11 02:49:21 +08:00
|
|
|
android:orientation="vertical">
|
2015-09-24 23:27:43 +08:00
|
|
|
|
2021-08-19 21:12:52 +08:00
|
|
|
<eu.kanade.tachiyomi.widget.TachiyomiChangeHandlerFrameLayout
|
|
|
|
android:id="@+id/controller_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
2021-11-18 23:47:24 +08:00
|
|
|
<com.google.android.material.appbar.TachiyomiAppBarLayout
|
2021-05-20 11:18:24 +08:00
|
|
|
android:id="@+id/appbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-08-19 21:12:52 +08:00
|
|
|
android:fitsSystemWindows="true"
|
2021-11-18 23:47:24 +08:00
|
|
|
app:elevation="0dp">
|
2021-05-20 11:18:24 +08:00
|
|
|
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:theme="?attr/actionBarTheme"
|
2021-12-17 22:32:42 +08:00
|
|
|
app:layout_scrollFlags="scroll|enterAlways|snap" />
|
2021-05-20 11:18:24 +08:00
|
|
|
|
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
|
|
android:id="@+id/tabs"
|
|
|
|
android:layout_width="match_parent"
|
2021-08-19 21:12:52 +08:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="gone" />
|
2021-05-20 11:18:24 +08:00
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/downloaded_only"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-05-27 06:11:14 +08:00
|
|
|
android:background="?attr/colorTertiary"
|
2021-05-20 11:18:24 +08:00
|
|
|
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"
|
2021-05-27 06:11:14 +08:00
|
|
|
android:textColor="?attr/colorOnTertiary" />
|
2021-05-20 11:18:24 +08:00
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/incognito_mode"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-07-16 05:28:10 +08:00
|
|
|
android:background="?attr/colorPrimary"
|
2021-05-20 11:18:24 +08:00
|
|
|
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"
|
2021-07-16 05:28:10 +08:00
|
|
|
android:textColor="?attr/colorOnPrimary" />
|
2021-05-20 11:18:24 +08:00
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
2021-11-18 23:47:24 +08:00
|
|
|
</com.google.android.material.appbar.TachiyomiAppBarLayout>
|
2020-04-11 02:49:21 +08:00
|
|
|
|
2021-05-15 05:48:11 +08:00
|
|
|
<include
|
|
|
|
android:id="@+id/fab_layout"
|
|
|
|
layout="@layout/main_activity_fab" />
|
2020-07-10 22:44:54 +08:00
|
|
|
|
2021-12-19 03:16:26 +08:00
|
|
|
<eu.kanade.tachiyomi.widget.ActionModeWithToolbar
|
|
|
|
android:id="@+id/action_toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom" />
|
|
|
|
|
2021-09-17 05:37:17 +08:00
|
|
|
<eu.kanade.tachiyomi.widget.TachiyomiBottomNavigationView
|
2020-04-11 02:49:21 +08:00
|
|
|
android:id="@+id/bottom_nav"
|
|
|
|
android:layout_width="match_parent"
|
2021-08-23 03:40:13 +08:00
|
|
|
android:layout_height="wrap_content"
|
2020-04-11 02:49:21 +08:00
|
|
|
android:layout_gravity="bottom"
|
2021-07-03 23:11:34 +08:00
|
|
|
android:clickable="true"
|
2022-04-25 10:16:36 +08:00
|
|
|
app:layout_behavior="eu.kanade.tachiyomi.widget.HideBottomNavigationOnScrollBehavior"
|
2020-09-27 07:27:39 +08:00
|
|
|
app:layout_insetEdge="bottom"
|
2021-07-03 23:11:34 +08:00
|
|
|
app:menu="@menu/main_nav"
|
|
|
|
tools:ignore="KeyboardInaccessibleWidget" />
|
2017-05-06 21:49:39 +08:00
|
|
|
|
2021-08-19 21:12:52 +08:00
|
|
|
</eu.kanade.tachiyomi.widget.TachiyomiCoordinatorLayout>
|