|
@@ -1,6 +1,7 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout 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/root_coordinator"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
@@ -25,6 +26,24 @@
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
+ <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>
|
|
|
+
|
|
|
</eu.kanade.tachiyomi.widget.ElevationAppBarLayout>
|
|
|
|
|
|
<com.bluelinelabs.conductor.ChangeHandlerFrameLayout
|