解决
设置全局变量listViewDirtyPressEnabled_next控制点击事件
LargeList 用scrollView方法控制
代码
onMomentumScrollBegin={() => {
if (_listViewDirtyPressEnabled_next) {
_listViewDirtyPressEnabled_next = false
}
}}
onMomentumScrollEnd={() => {
setTimeout(() => {
if (!_listViewDirtyPressEnabled_next) {
_listViewDirtyPressEnabled_next = true
}
}, 5);
}}