1、
android:background="@android:color/transparent"
2、在代码中加上:
mWebView.setBackgroundColor(0); // 设置背景色
mWebView.getBackground().setAlpha(0); // 设置透明度 范围:0-255
这样webview的背景色就有默认的白色变为透明。
1、
android:background="@android:color/transparent"
2、在代码中加上:
mWebView.setBackgroundColor(0); // 设置背景色
mWebView.getBackground().setAlpha(0); // 设置透明度 范围:0-255
这样webview的背景色就有默认的白色变为透明。