`
bogongjie
  • 浏览: 231097 次
  • 性别: Icon_minigender_1
  • 来自: 苏州
社区版块
存档分类
最新评论

android Activity區域監聽

阅读更多

本次講的是如何對activity的區域進行監聽,當點擊它以外的區域時執行finish的操作.

 

 

@Override
	public boolean onTouchEvent(MotionEvent event) {
		// TODO Auto-generated method stub
		if(event.getAction() == MotionEvent.ACTION_UP){
			Rect rect = new Rect(0, 0, 0, 0);
			this.getWindow().getDecorView().getHitRect(rect);
			if(!rect.contains((int)event.getX(), (int)event.getY())){
				finish();
			}
		}
		return super.onTouchEvent(event);
	}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics