WebView禁止向下滑动

时间:2014-07-08 05:06:04

标签: android webview

使用Android WebView控件,实现将WebView滑动到特定位置,不允许向下滑动,只允许向上滑动。同时可以取消这种状态。

    mBrowser.setOnScrollChange(new ScrollInterface() {

        @SuppressLint("NewApi")
        @Override
        public void onSChanged(int l, int t, int oldl, int oldt) {

            if ((mBrowser.getAllHeight() * 0.1)
                    - (mBrowser.getCurrenHeight()) <= 0) {


                    Log.d(log.getTag(), "specific location ,can't Continue to slide down");

            }

        }
    });

0 个答案:

没有答案