How to disable BottomSheetDialogFragment dragging

后端 未结 14 1286
猫巷女王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:33

    This is how I managed to fix it:

    mBehavior = BottomSheetBehavior.from((View) rootView.getParent());
    mBehavior.setHideable(false);
    

提交回复
热议问题