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"
|
2021-05-19 23:18:24 -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
|
|
|
|
2021-05-19 23:18:24 -04:00
|
|
|
<eu.kanade.tachiyomi.widget.ElevationAppBarLayout
|
|
|
|
android:id="@+id/appbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:fitsSystemWindows="true">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:theme="?attr/actionBarTheme"
|
|
|
|
app:layout_scrollFlags="scroll|enterAlways" />
|
|
|
|
|
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
|
|
android:id="@+id/tabs"
|
|
|
|
android:layout_width="match_parent"
|
2021-05-22 18:08:48 -04:00
|
|
|
android:layout_height="wrap_content" />
|
2021-05-19 23:18:24 -04:00
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/downloaded_only"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-05-26 18:11:14 -04:00
|
|
|
android:background="?attr/colorTertiary"
|
2021-05-19 23:18:24 -04: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-26 18:11:14 -04:00
|
|
|
android:textColor="?attr/colorOnTertiary" />
|
2021-05-19 23:18:24 -04:00
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
</eu.kanade.tachiyomi.widget.ElevationAppBarLayout>
|
2020-04-10 14:49:21 -04:00
|
|
|
|
|
|
|
<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
|
|
|
|
2021-05-14 17:48:11 -04:00
|
|
|
<include
|
|
|
|
android:id="@+id/fab_layout"
|
|
|
|
layout="@layout/main_activity_fab" />
|
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"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom"
|
2021-07-03 11:11:34 -04:00
|
|
|
android:clickable="true"
|
2020-09-26 19:27:39 -04:00
|
|
|
app:layout_insetEdge="bottom"
|
2021-07-03 11:11:34 -04:00
|
|
|
app:menu="@menu/main_nav"
|
|
|
|
tools:ignore="KeyboardInaccessibleWidget" />
|
2017-05-06 09:49:39 -04:00
|
|
|
|
2020-05-02 11:12:10 -04:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|