We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
修复方式:在InfiniteIndicator类的dispatchTouchEvent方法中某一段代码修改如下
if (isStopScrollWhenTouch) { if ((action == MotionEvent.ACTION_DOWN) && isAutoScroll) { isStopByTouch = true; stop(); } else if ((ev.getAction() == MotionEvent.ACTION_UP || ev.getAction() == MotionEvent.ACTION_CANCEL)&& isStopByTouch) { start(); } }
The text was updated successfully, but these errors were encountered:
感谢你的反馈,这个应该是ScrollView拦截了事件导致,你可以提个PR ^_^
Sorry, something went wrong.
No branches or pull requests
修复方式:在InfiniteIndicator类的dispatchTouchEvent方法中某一段代码修改如下
The text was updated successfully, but these errors were encountered: