我有一个自定义的dialogFragment,它基本上有效,但是如果你点击(即点击)远离对话框,它只会被解雇。如果我非常靠近对话框,但仍在外面(例如距边缘30px),则没有任何反应......对话框不会被忽略。
我发现即使在没有自定义的基本alertDialog上也会出现这种情况。据我所知,这是一个标准的Android东西。我错了吗?这有什么理由吗?
有一个属性.setCanceledOnTouchOutside();改变这确实会影响按预期工作的点击 - 远离解雇,但对上述近似边缘情况没有影响。
对话框类:
public class Filters_DialogFragment extends DialogFragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.filters_dialog, container, false);
getDialog().setTitle("Simple Dialog");
// FYI, this has no affect on clicking very close to the dialog edge.
getDialog().setCanceledOnTouchOutside(true);
return rootView;
}
}
对话框布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#333333">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="FILTERS"
android:textColor="#ffffff" />
<SeekBar
android:id="@+id/seekBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
调用对话框的活动中的功能:
private void showFiltersDialog() {
FragmentManager fm = getSupportFragmentManager();
Filters_DialogFragment dialogFragment = new Filters_DialogFragment();
dialogFragment.show(fm, "Sample Fragment");
}
答案 0 :(得分:4)
我自己一直在面对这个问题,所以有些人正在挖掘源代码。证明了它的故意行为,被称为&#34; touchSlop&#34;。它在ViewConfiguration中定义:
违规代码在Window类中:
public boolean shouldCloseOnTouch(Context context, MotionEvent event) {
if (mCloseOnTouchOutside && event.getAction() == MotionEvent.ACTION_DOWN
&& isOutOfBounds(context, event) && peekDecorView() != null) {
return true;
}
return false;
}
然后调用:
private boolean isOutOfBounds(Context context, MotionEvent event) {
final int x = (int) event.getX();
final int y = (int) event.getY();
final int slop = ViewConfiguration.get(context).getScaledWindowTouchSlop();
final View decorView = getDecorView();
return (x < -slop) || (y < -slop)
|| (x > (decorView.getWidth()+slop))
|| (y > (decorView.getHeight()+slop));
}
其价值来自:
/**
* Distance in dips a touch needs to be outside of a window's bounds for it to
* count as outside for purposes of dismissing the window.
*/
private static final int WINDOW_TOUCH_SLOP = 16;
我找不到任何方法来覆盖此行为或更改slop值。我认为唯一的选择是实现具有透明背景和手动点击处理程序的全屏对话框。我已经确定我的应用程序覆盖默认系统行为并不是一个好主意,所以我不打算实现它。