我已经为我的应用程序实现了自定义对话框。我要实现的是,当用户在对话框外单击时,该对话框将被关闭。我该怎么办?
我已经为我的应用程序实现了自定义对话框。我要实现的是,当用户在对话框外单击时,该对话框将被关闭。我该怎么办?
Answers:
dialog.setCanceledOnTouchOutside(true);
如果您触摸对话框外部,则可以使用它将关闭对话框。
就像是,
Dialog dialog = new Dialog(context)
dialog.setCanceledOnTouchOutside(true);
或者,如果您的对话框处于非模型状态,
1- FLAG_NOT_TOUCH_MODAL
为对话框的window属性设置flag-
Window window = this.getWindow();
window.setFlags(WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL,
WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL);
2-在Windows属性中添加另一个标志,FLAG_WATCH_OUTSIDE_TOUCH
-该对话框用于对话框在其可见区域之外接收触摸事件。
3-覆盖onTouchEvent()
对话框并检查操作类型。如果操作类型为“ MotionEvent.ACTION_OUTSIDE
”,则表示用户正在对话框区域之外进行交互。因此,在这种情况下,您可以取消对话框或决定要执行的操作。查看原图?
public boolean onTouchEvent(MotionEvent event)
{
if(event.getAction() == MotionEvent.ACTION_OUTSIDE){
System.out.println("TOuch outside the dialog ******************** ");
this.dismiss();
}
return false;
}
有关更多信息,请参见如何关闭基于接触点的自定义对话框?以及 在对话框区域外触摸时如何关闭非模式对话框
您可以使用onTouchEvent的此实现。它可以防止在活动之下对触摸事件做出反应(如howettl所述)。
@Override
public boolean onTouchEvent ( MotionEvent event ) {
// I only care if the event is an UP action
if ( event.getAction () == MotionEvent.ACTION_UP ) {
// create a rect for storing the window rect
Rect r = new Rect ( 0, 0, 0, 0 );
// retrieve the windows rect
this.getWindow ().getDecorView ().getHitRect ( r );
// check if the event position is inside the window rect
boolean intersects = r.contains ( (int) event.getX (), (int) event.getY () );
// if the event is not inside then we can close the activity
if ( !intersects ) {
// close the activity
this.finish ();
// notify that we consumed this event
return true;
}
}
// let the system handle the event
return super.onTouchEvent ( event );
}
资料来源:http://blog.twimager.com/2010/08/closing-activity-by-touching-outside.html
或者,如果您要使用样式xml中定义的主题来自定义对话框,请将此行放入主题中:
<item name="android:windowCloseOnTouchOutside">true</item>
dialog.setCanceledOnTouchOutside(true);
确实很棒。
此方法应完全避免灰色区域下方的活动检索点击事件。
如果有,请删除此行:
window.setFlags(WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL, WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL);
将其放在您创建的活动中
getWindow().setFlags(LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH, LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH);
然后用这个覆盖触摸事件
@Override
public boolean onTouchEvent(MotionEvent ev)
{
if(MotionEvent.ACTION_DOWN == ev.getAction())
{
Rect dialogBounds = new Rect();
getWindow().getDecorView().getHitRect(dialogBounds);
if (!dialogBounds.contains((int) ev.getX(), (int) ev.getY())) {
// You have clicked the grey area
displayYourDialog();
return false; // stop activity closing
}
}
// Touch events inside are fine.
return super.onTouchEvent(ev);
}
此代码用于在单击时单击hidesoftinput的对话框,以及在用户单击同时关闭softinput和对话框的对话框的外侧时使用的代码。
dialog = new Dialog(act) {
@Override
public boolean onTouchEvent(MotionEvent event) {
// Tap anywhere to close dialog.
Rect dialogBounds = new Rect();
getWindow().getDecorView().getHitRect(dialogBounds);
if (!dialogBounds.contains((int) event.getX(),
(int) event.getY())) {
// You have clicked the grey area
InputMethodManager inputMethodManager = (InputMethodManager) act
.getSystemService(act.INPUT_METHOD_SERVICE);
inputMethodManager.hideSoftInputFromWindow(dialog
.getCurrentFocus().getWindowToken(), 0);
dialog.dismiss();
// stop activity closing
} else {
InputMethodManager inputMethodManager = (InputMethodManager) act
.getSystemService(act.INPUT_METHOD_SERVICE);
inputMethodManager.hideSoftInputFromWindow(dialog
.getCurrentFocus().getWindowToken(), 0);
}
return true;
}
};
另一个解决方案,此代码摘自android源代码,Window
您应该只将这两个方法添加到对话框源代码中。
@Override
public boolean onTouchEvent(MotionEvent event) {
if (isShowing() && (event.getAction() == MotionEvent.ACTION_DOWN
&& isOutOfBounds(getContext(), event) && getWindow().peekDecorView() != null)) {
hide();
}
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 = getWindow().getDecorView();
return (x < -slop) || (y < -slop)
|| (x > (decorView.getWidth()+slop))
|| (y > (decorView.getHeight()+slop));
}
这个解决方案没有这个问题:
这很有效,除了下面的活动也对触摸事件做出反应。有什么办法可以防止这种情况?– howettl
以下对我有用:
myDialog.setCanceledOnTouchOutside(true);
这是代码
dialog.getWindow().getDecorView().setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent ev) {
if(MotionEvent.ACTION_DOWN == ev.getAction())
{
Rect dialogBounds = new Rect();
dialog. getWindow().getDecorView().getHitRect(dialogBounds);
if (!dialogBounds.contains((int) ev.getX(), (int) ev.getY())) {
// You have clicked the grey area
UiUtils.hideKeyboard2(getActivity());
return false; // stop activity closing
}
}
getActivity().dispatchTouchEvent(ev);
return false;
}
});
试试这个。您可以在外面触摸时隐藏键盘