How to disable BottomSheetDialogFragment dragging

后端 未结 14 1314
猫巷女王i
猫巷女王i 2021-01-31 04:58

How to disable BottomSheetDialogFragment dragging by finger?

I saw similar questions, but they\'re all about BottomSheet not BottomSheetD

14条回答
  •  不知归路
    2021-01-31 05:34

    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);
    

提交回复
热议问题