How to disable BottomSheetDialogFragment
dragging by finger?
I saw similar questions, but they\'re all about BottomSheet
not BottomSheetD
This works for me sir
override fun onCreateDialog(savedInstanceState : Bundle?) : Dialog {
val dialog = super.onCreateDialog(savedInstanceState);
dialog.setOnShowListener {
val bottomSheetDialog : BottomSheetDialog = it as BottomSheetDialog;
var bottomSheetBehavior = BottomSheetBehavior();
bottomSheetBehavior = bottomSheetDialog.getBehavior()
bottomSheetBehavior.setDraggable(false);
}
return dialog }