使用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");
}
}
});