展会信息港展会大全

Android popupwindow 失去焦点或者点击空白区域时消失的解决方法
来源:互联网   发布日期:2015-10-03 13:15:36   浏览:1874次  

导读:先来看下Android API 的这个Methods: public void setOutsideTouchable (boolean touchable) Controls whether the pop-up will be informed of touch events outside of its window. This only makes sense for pop-ups that are touchable but not focusab...

先来看下Android API 的这个Methods:

public void setOutsideTouchable

(boolean touchable)

Controls whether the pop-up will be informed of touch events outside of its window. This only makes sense for pop-ups that are touchable but not focusable, which means touches outside of the window will be delivered to the window behind. The default is

false.

If the popup is showing, calling this method will take effect only the next time the popup is shown or through a manual call to one of the

update() methods.

Parameters

touchable

true if the popup should receive outside touch events, false otherwise

See Also

isOutsideTouchable()isShowing()update()

就是说,基本通过这个属性和setFocusable(true);就能实现点击别的区域让popup消失,

也可以这样做,设置点击popup窗体自身,让其消失,通过下边的方法即root重写onTouch方法:

//点击窗体,PopupWindow消失

root.setOnTouchListener(new View.OnTouchListener() {

@Override

public boolean onTouch(View v, MotionEvent event) {

popup.dismiss();

return true;

}

});

同样, 可以不用重写root的onTouch方法,而该重写 Activity的onTouchEvent()方法,正常情况下也能实现popup消失.

@Override

public boolean onTouchEvent(MotionEvent event) {

if (popup != null && popup.isShowing()) {

popup.dismiss();

popup= null;

}

return super.onTouchEvent(event);

}

但是, 我遇到一个问题,就是上述的方法都解决不了, 是什么原因?

其实,罪魁祸首就是, popup的代码顺序, 手贱先调用了 showAsDropDown()方法,在设置其他属性,导致了这种情况.

showAsDropDown这个方法相当于 Dialog.show()方法,如果是先show了, 然后其他属性即使是设置了,也起不到应有的作用.

这一点,经常提醒别人,没想到到popup这里我犯了同样的错误.

赞助本站

人工智能实验室

相关热词: android开发

AiLab云推荐
推荐内容
展开

热门栏目HotCates

Copyright © 2010-2024 AiLab Team. 人工智能实验室 版权所有    关于我们 | 联系我们 | 广告服务 | 公司动态 | 免责声明 | 隐私条款 | 工作机会 | 展会港