My Theme Resource not working when BottomSheetDialog is Expanded state?
@Override
protected void onStart() {
super.onStart();
behavior.setState(BottomSheetBehavior.STATE_EXPANDED);
}
When calling on My Activity, Theme resources is not working?
val dialog = BottomSheetDialog(this,
R.style.ThemeOverlay_MaterialComponents_RoundShapeBottomSheetDialog)
When Expanded mode, background bottomsheet back to default, Why this?
Customize the BottomSheetDialog Background,you can create a custom style for the BottomSheetDialog that modifies the default background.
Then apply this theme when creating your BottomSheetDialog: