可以使用如下代码来确定ACTION_SCROLL手势事件分配到的视图:
@Override public boolean onInterceptTouchEvent(MotionEvent event) { final int action = event.getAction(); switch (action & MotionEvent.ACTION_MASK) { case MotionEvent.ACTION_SCROLL: View view = /* 获取 ACTION_SCROLL 事件的视图 */; // 对视图进行操作 break; } return super.onInterceptTouchEvent(event); }
在上述代码中,通过获取ACTION_SCROLL手势事件所属的视图,对该视图进行相应的操作。