AndroidWebView 设置背景色为透明色

在网上找了 好多的方法都试过了 都不行

1.直接设置成background 为透明色 或者透明图片 (无效)

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

2.设置加载的html为透明背景图片(无效)

String mobileDetails = "<html xmlns=\"http://www.w3.org/1999/xhtml\"><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" /><title>vvv</title></head>" +
"<div style='background-image: url(file:///android_asset/z_bg_transparent.png);'>" +
mGetDetail.data.get("description")
+ "</div></html>";

3.网上所谓的(无效)

android:layerType="software"

或者

android:hardwareAccelerated="false"

4.直接代码中设置mWebView.setBackgroundColor(0);(无效)

5.最后抓着头皮我在mWebView.setBackgroundColor(0);基础上设置了他的透明度为2结果ok有效

代码如下:

mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.getSettings().setDefaultTextEncodingName("utf-8") ;
mWebView.setBackgroundColor(0); // 设置背景色
mWebView.getBackground().setAlpha(0); // 设置填充透明度 范围:0-255
mWebView.loadDataWithBaseURL(null, "加载中。。", "text/html", "utf-8",null);
mWebView.loadDataWithBaseURL(mGetDetail.data.get("hostsUrl"), mGetDetail.data.get("description"), "text/html", "utf-8",null);
mWebView.setVisibility(View.VISIBLE); // 加载完之后进行设置显示,以免加载时初始化效果不好看


更多相关文章

  1. android 自定义对话框
  2. 关于android WebViewClient和WebChromeClient
  3. android:configChanges属性
  4. Android(安卓)TextView 文字居中
  5. TextView属性android:ellipsize实现跑马灯效果
  6. 彻底解决Android(安卓)应用方法数不能超过65K的问题
  7. Android异步加载图像小结
  8. android:imeOptions属性
  9. Android纠正Activity横竖屏切换的生命周期的错误

随机推荐

  1. MyBatis 延迟加载、一二级缓存、架构设计
  2. HotSpot 内存分配的主要规则
  3. 我与 Java 的七年之痒
  4. JVM 故障处理工具列表
  5. Object对象你真理解了吗?
  6. MyBatis 如何编写一个自定义插件?运行原理
  7. 请查收,32 道 MyBatis 的高频面试题已答完
  8. 聊聊我是怎么开发Java面试题小程序的
  9. Class 文件的结构
  10. 图解 Class 文件结构