diff --git a/app/src/main/java/io/nekohasekai/sfa/ui/shared/AbstractActivity.kt b/app/src/main/java/io/nekohasekai/sfa/ui/shared/AbstractActivity.kt index 2ba7da0..92005c1 100644 --- a/app/src/main/java/io/nekohasekai/sfa/ui/shared/AbstractActivity.kt +++ b/app/src/main/java/io/nekohasekai/sfa/ui/shared/AbstractActivity.kt @@ -1,11 +1,14 @@ package io.nekohasekai.sfa.ui.shared +import android.content.res.Configuration +import android.os.Build import android.os.Bundle import android.view.LayoutInflater import android.view.MenuItem import android.view.WindowManager import androidx.appcompat.app.AppCompatActivity import androidx.appcompat.content.res.AppCompatResources +import androidx.core.view.WindowCompat import androidx.viewbinding.ViewBinding import com.google.android.material.appbar.MaterialToolbar import com.google.android.material.color.DynamicColors @@ -15,8 +18,7 @@ import io.nekohasekai.sfa.ui.MainActivity import io.nekohasekai.sfa.utils.MIUIUtils import java.lang.reflect.ParameterizedType -abstract class AbstractActivity() : - AppCompatActivity() { +abstract class AbstractActivity : AppCompatActivity() { private var _binding: Binding? = null internal val binding get() = _binding!! @@ -26,10 +28,17 @@ abstract class AbstractActivity() : DynamicColors.applyToActivityIfAvailable(this) - val colorSurfaceContainer = - getAttrColor(com.google.android.material.R.attr.colorSurfaceContainer) - window.statusBarColor = colorSurfaceContainer - window.navigationBarColor = colorSurfaceContainer + // Set light navigation bar for Android 8.0 + if (Build.VERSION.SDK_INT == Build.VERSION_CODES.O) { + val nightFlag = resources.configuration.uiMode and Configuration.UI_MODE_NIGHT_MASK + if (nightFlag != Configuration.UI_MODE_NIGHT_YES) { + val insetsController = WindowCompat.getInsetsController( + window, + window.decorView + ) + insetsController.isAppearanceLightNavigationBars = true + } + } _binding = createBindingInstance(layoutInflater).also { setContentView(it.root) diff --git a/app/src/main/res/values-night-v23/themes.xml b/app/src/main/res/values-night-v23/themes.xml new file mode 100644 index 0000000..c21db04 --- /dev/null +++ b/app/src/main/res/values-night-v23/themes.xml @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/values-night-v26/themes.xml b/app/src/main/res/values-night-v26/themes.xml new file mode 100644 index 0000000..12707b5 --- /dev/null +++ b/app/src/main/res/values-night-v26/themes.xml @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/values-night/themes.xml b/app/src/main/res/values-night/themes.xml deleted file mode 100644 index 7e4c396..0000000 --- a/app/src/main/res/values-night/themes.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - diff --git a/app/src/main/res/values-v23/themes.xml b/app/src/main/res/values-v23/themes.xml new file mode 100644 index 0000000..df0de16 --- /dev/null +++ b/app/src/main/res/values-v23/themes.xml @@ -0,0 +1,11 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/values-v26/themes.xml b/app/src/main/res/values-v26/themes.xml new file mode 100644 index 0000000..600a73f --- /dev/null +++ b/app/src/main/res/values-v26/themes.xml @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/values-v27/themes.xml b/app/src/main/res/values-v27/themes.xml new file mode 100644 index 0000000..db679d3 --- /dev/null +++ b/app/src/main/res/values-v27/themes.xml @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml index b600c79..6931d4e 100644 --- a/app/src/main/res/values/themes.xml +++ b/app/src/main/res/values/themes.xml @@ -1,9 +1,7 @@ - + + - +