去掉WebView中的白色背景

我们需要分为两步进行


1 在布局文件中设置  
  android:background="@android:color/transparent"

2 在代码中设置
  mWebView.setBackgroundColor(0);  
  mWebView.getBackground().setAlpha(0);

总结:两者结合使用即可去掉webView的白色背景

你可能感兴趣的:(android,webView,webview空白,wb空白解决)