webview设置背景透明

android WebView 设置背景色为透明色

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

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

[html] view plain copy
  1. android:background="@android:color/transparent"  

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

[java] view plain copy
  1. String mobileDetails = "vvv" +  
  2.         "" +  
  3.         mGetDetail.data.get("description")  
  4.         + "
";  

3.网上所谓的 (无效)

[html] view plain copy
  1. android:layerType="software"   

或者 

[html] view plain copy
  1. android:hardwareAccelerated="false"  

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

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

  代码如下:

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

你可能感兴趣的:(android开发)