我的WebView设置如下:
//the web view
_mWebView = (WebView) findViewById(R.id.webView);
//push the url on to the web view
_mWebView.loadUrl(buildURL.toString());
//make the view transparent to get rid of white box while loading
_mWebView.setBackgroundColor(0x00000000);
//_mWebView.bringToFront();
//_mWebView.requestFocus();
//_mWebView.requestFocusFromTouch();
在视频加载的某些手机上它会滚动很好但在我的设备上,Sensation Xe运行4.0.3,视图不会滚动。如果我长时间触摸视图,它会选择一些文本然后正常滚动。这很烦人,因为对最终用户这样做并不明显。我已经尝试了上面提到的一些事情,有什么建议吗?
感谢。
答案 0 :(得分:0)
在您的代码中添加此行,这可能是您尝试的帮助,
_mWebView.setVerticalScrollBarEnabled(true);