How to disable BottomSheetDialogFragment dragging

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

    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 }
    

提交回复
热议问题