最近我切换为使用com.google.android.material:material:1.0.0
作为应用主题。
除了设置colorPrimary
,colorPrimaryDark
和colorAccent
并使用MaterialButton
和Widget.MaterialComponents.Button
样式外,活动/片段和bottomSheetFragment中的按钮在颜色上也不同!
正常。但在BottomSheet中具有不同的颜色(绿色)。
答案 0 :(得分:1)
我找到了解决此问题的技巧:
为BottomSheetDialogFragment定义新样式:
<style name="BaseBottomSheetDialog" parent="@style/Theme.MaterialComponents.Light.BottomSheetDialog">
<item name="colorPrimary">@color/primary</item>
<item name="colorPrimaryDark">@color/primary_dark</item>
<item name="colorAccent">@color/accent</item>
</style>
并在您的BottomSheet类中使用它:
override fun getTheme(): Int = R.style.BaseBottomSheetDialog
最好使用基类并在其上实现getTheme()
。