RelativeLayout
我有一些从动态使用代码中添加和删除的片段。其中一个片段是 a ListFragment
,与我的其他具有关闭和保存按钮的片段相反,这个片段仅包含一个列表。
我的目标是通过在活动中的任何位置单击它外部来关闭/删除此片段。
我找到了以下代码:
@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);
}
单击外部时会关闭非全屏活动,但我似乎不明白如何找到我的片段矩形。
有人可以帮助我并指出正确的方向吗?任何帮助,将不胜感激。
谢谢。