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
No description provided.
The text was updated successfully, but these errors were encountered:
private int action = -1; public void computeScroll() { if (isScrolling) { isScrolling = computeScrollOffset(); //在move 事件中已调用了doScroll(),这里应该不再调用 if (action != MotionEvent.ACTION_MOVE) { doScroll(getCurrY() - mScrollOffset); } if (isScrolling) { mWheelView.postInvalidate(); } else { // 滚动结束后,重新调整位置 justify(); } } } public boolean onTouchEvent(MotionEvent event) { ... action = event.getAction(); ... }
Sorry, something went wrong.
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: