【发布时间】:2020-10-15 00:38:02
【问题描述】:
我在Android中有BottomSheetDialog,但底部(覆盖导航栏)是透明的,有什么办法可以让它变白吗?
我已将活动的 NavigationBar 颜色设置为白色,这似乎触发了透明区域:
<item name="android:navigationBarColor">@color/white</item>
我认为这并不重要,但我已将 BottomSheetDialog 的样式设置为 RoundedBottomSheetDialog 以创建圆角:
<style name="RoundedBottomSheetDialog" parent="Theme.Design.Light.BottomSheetDialog">
<item name="bottomSheetStyle">@style/bottomSheetStyleWrapper</item>
</style>
<style name="bottomSheetStyleWrapper" parent="Widget.Design.BottomSheet.Modal">
<item name="android:background">@android:color/transparent</item>
</style>
【问题讨论】:
标签: android