안드로이드/Tip
BottomSheetDialogFragment background 설정하기
Debbi
2020. 9. 10. 01:13
728x90
BottomSheetDialogFragment를 사용할때 background에 round를 주고싶었지만
xml에 설정을 해주어도 변경이 안되더라구요..
그럴때 AppTheme style에 bottomSheetDialogTheme를 추가해주시고
<item name="bottomSheetDialogTheme">@style/AppBottomSheetDialogTheme</item>
<style name="AppBottomSheetDialogTheme" parent="Theme.Design.Light.BottomSheetDialog">
<item name="bottomSheetStyle">@style/AppModalStyle</item>
</style>
<style name="AppModalStyle" parent="Widget.Design.BottomSheet.Modal">
<item name="android:background">@drawable/bg_dialog_border</item>
</style>
위처럼 style을 추가해주시면 background 설정이 가능합니다!