Android-WebView透明实现

在最近的项目开发当中,我们使用WebView加载网页需要实现透明的背景。我之前没有遇到过,我尝试一下了相关的实现方法,分享给大家。希望能看文章的小伙伴有所帮助。
1、在XML中设置:

android:background="@android:color/transparent"

2、在代码当中设置:

// 设置背景色
wv.setBackgroundColor(0); 
// 设置透明度 范围:0-255
wv.getBackground().setAlpha(0); 

这样设置之后,我们的WebView就会从白色背景变成透明的背景色了。

你可能感兴趣的:(Android-WebView透明实现)