How to disable BottomSheetDialogFragment
dragging by finger?
I saw similar questions, but they\'re all about BottomSheet
not BottomSheetD
Just Add bottomSheetBehavior.setHideable(false);
You can get Object of BottomshitBehaviour in BottomshitDialogFragment.
CoordinatorLayout.LayoutParams params = (CoordinatorLayout.LayoutParams) ((View) view.getParent()).getLayoutParams();
CoordinatorLayout.Behavior behavior = params.getBehavior();
View parent = (View) view.getParent();
getHeight(view);
((BottomSheetBehavior) behavior).setFitToContents(true);
BottomSheetBehavior bottomSheetBehavior = BottomSheetBehavior.from(parent);
bottomSheetBehavior.setHideable(false);