android 的webView的透明设置

对于4.0以后的WebView空间,要想做到webView的背景透明,需要关闭WebView的硬件加速功能,可以在xml中配置此属性。如下:

1、在xml文件中设置WebView的android:layerType属性为software。

<WebView 
	    android:id="@+id/webview"
	    android:layout_alignParentBottom="true"
	    android:layout_width="fill_parent"
	    android:layout_height="fill_parent"
	    android:layerType="software"
	    />

2、在代码中设置WebView的setBackground属性

int color = getResources().getColor(R.color.transparent_black);
mWebView.setBackgroundColor(color); // 设置背景色

背景颜色的透明度比可以由您自己设置。


可以测试通过

mWebView.loadUrl("http://www.baidu.com");

打开百度的首页测试半透明效果。


3、另要注意的是在编写html时注意他的背影的设置。

你可能感兴趣的:(android 的webView的透明设置)