我在这里通过在某个列表视图的项目中放置一个自定义控件来尝试一个疯狂的想法。只有当用户触碰某个触发点然后他们可以“拖动”时,该控件才会“激活”。
我的问题是,我可以在 onTouchEvent(...) 中做什么来防止列表视图接收事件和滚动。现在我可以触摸并获得控件,但是如果我将手指向上或向下移动太多,列表视图会接管并开始滚动,那么我的视图甚至不会收到 ACTION_UP 事件。
这是我当前的 onTouchEvent 代码:
if (e.getAction() == MotionEvent.ACTION_DOWN) {
Log.d("SwipeView", "onTouchEvent - ACTION_DOWN" + e.getX() + " " + e.getY());
int midX = (int)(this.getWidth() / 2);
int midY = (int)(this.getHeight() / 2);
if (Math.abs(e.getX() - midX) < 100 &&
Math.abs(e.getY() - midY) < 100) {
Log.d("SwipeView", "HEY");
setDragActive(true);
}
this.invalidate();
return true;
} else if (e.getAction() == MotionEvent.ACTION_MOVE) {
_current[0] = e.getX();
_current[1] = e.getY();
this.invalidate();
return true;
} else if (e.getAction() == MotionEvent.ACTION_UP) {
_current[0] = 0;
_current[1] = 0;
setDragActive(false);
this.invalidate();
return true;
}
我确信它以某种方式与事件层次结构有关。