|
@@ -1,18 +1,24 @@
|
|
|
package eu.kanade.tachiyomi.widget.sheet
|
|
|
|
|
|
import android.content.Context
|
|
|
+import android.content.res.Configuration
|
|
|
+import android.os.Build
|
|
|
import android.os.Bundle
|
|
|
+import android.util.DisplayMetrics
|
|
|
import android.view.LayoutInflater
|
|
|
import android.view.View
|
|
|
import android.view.ViewGroup
|
|
|
-import com.google.android.material.bottomsheet.BottomSheetBehavior
|
|
|
import com.google.android.material.bottomsheet.BottomSheetDialog
|
|
|
import eu.kanade.tachiyomi.R
|
|
|
+import eu.kanade.tachiyomi.data.preference.PreferenceValues
|
|
|
+import eu.kanade.tachiyomi.data.preference.PreferencesHelper
|
|
|
+import eu.kanade.tachiyomi.util.system.displayCompat
|
|
|
+import eu.kanade.tachiyomi.util.view.setNavigationBarTransparentCompat
|
|
|
+import uy.kohesive.injekt.Injekt
|
|
|
+import uy.kohesive.injekt.api.get
|
|
|
|
|
|
abstract class BaseBottomSheetDialog(context: Context) : BottomSheetDialog(context) {
|
|
|
|
|
|
- internal lateinit var sheetBehavior: BottomSheetBehavior<*>
|
|
|
-
|
|
|
abstract fun createView(inflater: LayoutInflater): View
|
|
|
|
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
@@ -21,12 +27,39 @@ abstract class BaseBottomSheetDialog(context: Context) : BottomSheetDialog(conte
|
|
|
val rootView = createView(layoutInflater)
|
|
|
setContentView(rootView)
|
|
|
|
|
|
- sheetBehavior = BottomSheetBehavior.from(rootView.parent as ViewGroup)
|
|
|
-
|
|
|
// Enforce max width for tablets
|
|
|
val width = context.resources.getDimensionPixelSize(R.dimen.bottom_sheet_width)
|
|
|
if (width > 0) {
|
|
|
- sheetBehavior.maxWidth = width
|
|
|
+ behavior.maxWidth = width
|
|
|
+ }
|
|
|
+
|
|
|
+ // Set peek height to 50% display height
|
|
|
+ context.displayCompat?.let {
|
|
|
+ val metrics = DisplayMetrics()
|
|
|
+ it.getRealMetrics(metrics)
|
|
|
+ behavior.peekHeight = metrics.heightPixels / 2
|
|
|
+ }
|
|
|
+
|
|
|
+ // Set navbar color to transparent for edge-to-edge bottom sheet if we can use light navigation bar
|
|
|
+ // TODO Replace deprecated systemUiVisibility when material-components uses new API to modify status bar icons
|
|
|
+ @Suppress("DEPRECATION")
|
|
|
+ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
|
|
+ window?.setNavigationBarTransparentCompat(context)
|
|
|
+ val isDarkMode = when (Injekt.get<PreferencesHelper>().themeMode().get()) {
|
|
|
+ PreferenceValues.ThemeMode.light -> false
|
|
|
+ PreferenceValues.ThemeMode.dark -> true
|
|
|
+ PreferenceValues.ThemeMode.system ->
|
|
|
+ context.resources.configuration.uiMode and
|
|
|
+ Configuration.UI_MODE_NIGHT_MASK == Configuration.UI_MODE_NIGHT_YES
|
|
|
+ }
|
|
|
+ val bottomSheet = rootView.parent as ViewGroup
|
|
|
+ var flags = bottomSheet.systemUiVisibility
|
|
|
+ flags = if (isDarkMode) {
|
|
|
+ flags and View.SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR.inv()
|
|
|
+ } else {
|
|
|
+ flags or View.SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR
|
|
|
+ }
|
|
|
+ bottomSheet.systemUiVisibility = flags
|
|
|
}
|
|
|
}
|
|
|
}
|