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:
可以通过重写 SwipeRefreshLayout 的 onInterceptTouchEvent() 方法来实现支持。
参考如下代码:
@Override public boolean onInterceptTouchEvent(MotionEvent ev) { boolean isIntercept = true; switch (ev.getAction()) { case MotionEvent.ACTION_DOWN: mDownY = (int) ev.getY(); break; case MotionEvent.ACTION_HOVER_MOVE: int dy = (int) (mDownY - ev.getY()); if (dy > 0) isIntercept = false; } return mWebView.getScrollY() == 0 && mScrollView.getScrollY() == 0 && isIntercept && super.onInterceptTouchEvent(ev); }
Sorry, something went wrong.
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: