Fix navigation bar color for BottomSheetDialog

This commit is contained in:
iKirby 2024-03-16 22:07:27 +08:00 committed by 世界
parent 75a35d3c97
commit de0929a064
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
3 changed files with 10 additions and 4 deletions

View file

@ -5,11 +5,9 @@
xmlns:app="http://schemas.android.com/apk/res-auto">
<LinearLayout
style="@style/Widget.Material3.BottomSheet"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="?selectableItemBackground"
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
<com.google.android.material.bottomsheet.BottomSheetDragHandleView

View file

@ -1,6 +1,6 @@
<resources xmlns:tools="http://schemas.android.com/tools">
<style name="AppTheme" parent="Theme.Material3.DayNight.NoActionBar">
<style name="AppTheme" parent="AppTheme.Base">
<item name="android:windowLightStatusBar" tools:targetApi="m">false</item>
<item name="android:windowLightNavigationBar" tools:targetApi="m">false</item>
</style>

View file

@ -1,10 +1,14 @@
<resources xmlns:tools="http://schemas.android.com/tools">
<style name="AppTheme" parent="Theme.Material3.DayNight.NoActionBar">
<style name="AppTheme" parent="AppTheme.Base">
<item name="android:windowLightStatusBar" tools:targetApi="m">true</item>
<item name="android:windowLightNavigationBar" tools:targetApi="m">true</item>
</style>
<style name="AppTheme.Base" parent="Theme.Material3.DayNight.NoActionBar">
<item name="bottomSheetDialogTheme">@style/BottomSheetDialogTheme</item>
</style>
<style name="AppTheme.Translucent" parent="Theme.Material3.DayNight.Dialog.Alert">
<item name="android:background">@android:color/transparent</item>
<item name="android:windowNoTitle">true</item>
@ -13,4 +17,8 @@
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowAnimationStyle">@android:style/Animation</item>
</style>
<style name="BottomSheetDialogTheme" parent="Theme.Material3.DayNight.BottomSheetDialog">
<item name="android:navigationBarColor">?attr/colorSurfaceContainerLow</item>
</style>
</resources>