标签:
三个步骤:
1.在res/values的文件夹下,在styles.xml里面添加一个style,<style name="transparent" parent="@android:style/Theme.Translucent">,该style的意思是背景透明
2.Activity需要添加一个主题,即在AndroidManifest.xml定义的Activity里面添加一个属性,android:theme="@style/transparent"
3.在Activity里面获取到WebView对象后,需写以下几行代码:
webview.setBackgroundResource(android.R.color.transparent);//transparent是定义在color里的颜色值,可以为黑色
webview.setBackgroundColor(0);//以下这两行代码就是设置透明了
webview.getBackground().setAlpha(150);//这个是设置透明度
标签:
原文地址:http://blog.csdn.net/u013933941/article/details/44220687