我在父视图中覆盖ListView
后,我的onInterceptTouchEvent
出现问题。 ListView
刚刚滚动。
我已尝试向MotionEvent
发送ListView
,但似乎无法以任何方式处理。
boolean done = mListView.dispatchTouchEvent(event);
Log.d("listView dispatch", String.valueOf(done));
done
始终为真,所以我猜这个事件是正确收到的。
我还试图通过偏移和位置滚动ListView
,但这些产生了非常人为的体验。
有没有办法让我的ListView
以默认方式滚动?