mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-31 14:27:57 +01:00 
			
		
		
		
	Show downloaded only banner in all views
This commit is contained in:
		| @@ -193,10 +193,6 @@ class LibraryController( | ||||
|             } | ||||
|         } | ||||
|  | ||||
|         if (preferences.downloadedOnly().get()) { | ||||
|             binding.downloadedOnly.isVisible = true | ||||
|         } | ||||
|  | ||||
|         binding.btnGlobalSearch.clicks() | ||||
|             .onEach { | ||||
|                 router.pushController( | ||||
|   | ||||
| @@ -165,6 +165,10 @@ class MainActivity : BaseActivity<MainActivityBinding>() { | ||||
|         preferences.extensionUpdatesCount() | ||||
|             .asImmediateFlow { setExtensionsBadge() } | ||||
|             .launchIn(scope) | ||||
|  | ||||
|         preferences.downloadedOnly() | ||||
|             .asImmediateFlow { binding.downloadedOnly.isVisible = it } | ||||
|             .launchIn(scope) | ||||
|     } | ||||
|  | ||||
|     override fun onNewIntent(intent: Intent) { | ||||
|   | ||||
| @@ -10,24 +10,6 @@ | ||||
|         android:layout_height="match_parent" | ||||
|         android:orientation="vertical"> | ||||
|  | ||||
|         <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> | ||||
|  | ||||
|         <Button | ||||
|             android:id="@+id/btn_global_search" | ||||
|             style="@style/Theme.Widget.Button" | ||||
|   | ||||
| @@ -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 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user