Skip to content
New issue

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

外层要是支持SwipeRefreshLayout就好了 #8

Open
androidTH opened this issue Jun 24, 2019 · 1 comment
Open

外层要是支持SwipeRefreshLayout就好了 #8

androidTH opened this issue Jun 24, 2019 · 1 comment

Comments

@androidTH
Copy link

No description provided.

@linzhengloser
Copy link

可以通过重写 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);
    }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants