Android 带圆角和背景的BottomSheet
Posted 安果移不动
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 带圆角和背景的BottomSheet相关的知识,希望对你有一定的参考价值。
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!--实现BottomSheetDialog圆角效果-->
<style name="BottomSheetDialog" parent="Theme.Design.Light.BottomSheetDialog">
<item name="bottomSheetStyle">@style/bottomSheetStyleWrapper</item>
<!-- <item name="android:backgroundDimEnabled">false</item>-->
<item name="android:windowFrame">@null</item>
<item name="android:windowIsFloating">true</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:background">@android:color/transparent</item>
<item name="android:backgroundDimEnabled">true</item>
</style>
<style name="bottomSheetStyleWrapper" parent="
以上是关于Android 带圆角和背景的BottomSheet的主要内容,如果未能解决你的问题,请参考以下文章