2021-05-14 17:48:11 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<eu.kanade.tachiyomi.widget.ElevationAppBarLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
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"
|
|
|
|
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-14 17:48:11 -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-14 17:48:11 -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-14 17:48:11 -04:00
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/incognito_mode"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-07-15 08:46:30 -04:00
|
|
|
android:background="?attr/incognitoBackgroundColor"
|
2021-05-14 17:48:11 -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/pref_incognito_mode"
|
|
|
|
android:textColor="@color/md_white_1000" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
</eu.kanade.tachiyomi.widget.ElevationAppBarLayout>
|