我正在BottomSheetDialogFragment
上工作,我的要求是创建底部菜单,
如果我单击片段区域之外的地方,它应该不取消对话框,并且应该继续。
问题: “片段外的事件”应传播到较低的片段视图/片段。
我已经在下面尝试过(不适用于BottomDialogFragment): Allow outside touch for DialogFragment
要停止对话框,请尝试以下操作(我在BottomDialogFragment的setCancelable(boolean)
中调用onStart()
)
@Override
public void setCancelable(boolean cancelable) {
super.setCancelable(cancelable);
BottomSheetDialog dialog = (BottomSheetDialog) getDialog();
dialog.setCanceledOnTouchOutside(cancelable);
View bottomSheetView = dialog.getWindow().getDecorView().findViewById(R.id.design_bottom_sheet);
BottomSheetBehavior.from(bottomSheetView).setHideable(cancelable);
}
答案 0 :(得分:2)
正如Pankaj Kumar所说,默认情况下这是不可能的。但是,我发现了一种可行的解决方法,可以在保持底部打开的同时允许触摸底部的外部视图
您可以像这样覆盖BottomSheetDialog
的布局:
values / refs.xml
<resources xmlns:tools="http://schemas.android.com/tools">
<item name="design_bottom_sheet_dialog" type="layout" tools:override="true">@layout/custom_design_bottom_sheet_dialog</item>
</resources>
布局/custom_design_bottom_sheet_dialog.xml
<?xml version="1.0" encoding="utf-8"?>
<!--
~ This is an override of the design_bottom_sheet_dialog from material library
-->
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:id="@+id/coordinator"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<View
android:id="@+id/touch_outside"
android:layout_width="0dp"
android:layout_height="0dp"
android:visibility="gone"
android:importantForAccessibility="no"
android:soundEffectsEnabled="false"
tools:ignore="UnusedAttribute"/>
<FrameLayout
android:id="@+id/design_bottom_sheet"
style="?attr/bottomSheetStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|top"
app:layout_behavior="@string/bottom_sheet_behavior"/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</FrameLayout>
您的CustomBottomSheetDialogFragment
override fun onStart() {
super.onStart()
// Set layout for custom bottom sheet by allowing background touches
dialog?.window?.apply {
setLayout(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT)
setFlags(WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL, WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL)
attributes = attributes.apply {
gravity = Gravity.BOTTOM
}
setDimAmount(0.0f)
}
}
这样做,对话框的高度为wrap_content
,并且标记允许触摸对话框外部的视图来处理触摸
答案 1 :(得分:1)
在您的BottomSheetDialog
中尝试下面的代码:
override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
return (super.onCreateDialog(savedInstanceState) as BottomSheetDialog).apply {
setCanceledOnTouchOutside(false)
}
}
或用<CoordinatorLayout>
包装,例如您的<ConstraintLayout>
并实现<layout />
并附加到BottomSheetBehavior
。
答案 2 :(得分:1)
在您使用BottomSheetDialogFragment
之前这是不可能的。 BottomSheetDialogFragment
是一个对话框,并且作为每个对话框的行为,它不允许用户在对话框后面的任何视图上进行拦截,尽管这对用户是可见的。
因此,要实现此目的,您需要使用Fragment
而不是BottomSheetDialogFragment
。是的,这将需要大量代码更改:),并且如果您想截取后面的视图,则必须没有BottomSheetDialogFragment
。
答案 3 :(得分:1)
您应该使用android.support.design.widget.BottomSheetBehavior
。
但是如果您想在其他班级上有bottomSheet
,我建议您使用Fragment
,并在此fragment
中打开bottomSheet
打开片段in this way。
然后在您的片段中,使用以下代码打开bottomSheet
:
在onInitViews
var mBottomSheetBehavior = BottomSheetBehavior.from(bottomSheetCoordinatorLayout)
mBottomSheetBehavior!!.state = BottomSheetBehavior.STATE_HIDDEN
mBottomSheetBehavior!!.setBottomSheetCallback(object : BottomSheetBehavior.BottomSheetCallback() {
override fun onStateChanged(bottomSheet: View, newState: Int) {
when (newState) {
BottomSheetBehavior.STATE_HIDDEN -> {
fragmentManager?.popBackStack()
}
//BottomSheetBehavior.STATE_COLLAPSED -> "Collapsed"
//BottomSheetBehavior.STATE_DRAGGING -> "Dragging..."
//BottomSheetBehavior.STATE_EXPANDED -> "Expanded"
//BottomSheetBehavior.STATE_SETTLING -> "Settling..."
}
}
override fun onSlide(bottomSheet: View, slideOffset: Float) {
//text_view_state!!.text = "Sliding..."
}
})
您的layout
应该是这样的:
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layoutDirection="ltr">
<android.support.design.widget.CoordinatorLayout
android:id="@+id/bottomSheetCoordinatorLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:behavior_hideable="true"
app:behavior_peekHeight="55dp"
app:layout_behavior="@string/bottom_sheet_behavior">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/top_radius_primary_color"
android:paddingStart="@dimen/material_size_32"
android:paddingEnd="@dimen/material_size_32">
</RelativeLayout>
</android.support.design.widget.CoordinatorLayout>
</android.support.design.widget.CoordinatorLayout>
希望对您有帮助
答案 4 :(得分:0)
尝试
setCanceledOnTouchOutside(false);