去掉webView白色背景

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

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

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

你可能感兴趣的:(去掉webView白色背景)