Android WebView:禁用滚动黄色边缘渐变

时间:2012-01-06 00:08:59

标签: android webview scroll scrollview

如何在将视图滚动到顶部或底部时禁用显示的小黄色渐变。当你到达可滚动区域的边界时,会出现黄色渐变,如果你尝试继续滚动,渐变开始显示越来越多。

我尝试过使用“setVerticalFadingEdgeEnabled(false)”,但这不起作用。

作为参考,这是我设置webview的方式:

isiWebView = (WebView)_view.findViewById(R.id.isiWebView);
isiWebView.getSettings().setJavaScriptEnabled(true);
isiWebView.loadUrl("file:///android_asset/isi.html");
isiWebView.setBackgroundColor(0);
isiWebView.addJavascriptInterface(this,"JSInterface");
isiWebView.setVerticalFadingEdgeEnabled(false);

有什么想法吗?

谢谢!

1 个答案:

答案 0 :(得分:22)

我认为您可以尝试设置滚动模式:

isiWebView.setOverScrollMode(View.OVER_SCROLL_NEVER);