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
现象:开启 edgeMode(SlideBack.EDGE_BOTH) 后,右侧侧滑还是无法生效。
原因:SlideBackInterceptLayout 内。 @Override public boolean onInterceptTouchEvent(MotionEvent ev) { return ev.getAction() == MotionEvent.ACTION_DOWN && ev.getRawX() <= sideSlideLength; }
@Override public boolean onInterceptTouchEvent(MotionEvent ev) { return ev.getAction() == MotionEvent.ACTION_DOWN && ev.getRawX() <= sideSlideLength; }
没有对右侧的手势做拦截。
The text was updated successfully, but these errors were encountered:
bugfix [issues#6](#6)
30756c1
@wizos 非常感谢帮忙提出Bug。 现已修复,更新1.0.6即可。
Sorry, something went wrong.
No branches or pull requests
现象:开启 edgeMode(SlideBack.EDGE_BOTH) 后,右侧侧滑还是无法生效。
原因:SlideBackInterceptLayout 内。
@Override public boolean onInterceptTouchEvent(MotionEvent ev) { return ev.getAction() == MotionEvent.ACTION_DOWN && ev.getRawX() <= sideSlideLength; }
没有对右侧的手势做拦截。
The text was updated successfully, but these errors were encountered: