1. 程式人生 > >android webview 設定背景透明色

android webview 設定背景透明色

android WebView 設定背景色為透明色

在網上找了好多的方法都試過了都不行

1.直接設定成background 為透明色或者透明圖片(無效)

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

2.設定載入的html為透明背景圖片(無效)

  1. 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>"
     +  
  2.         "<div style='background-image: url(file:///android_asset/z_bg_transparent.png);'>" +  
  3.         mGetDetail.data.get("description")  
  4.         + "</div></html>";  

3.網上所謂的(無效)

  1. android:layerType="software"

或者 

  1. android:hardwareAccelerated="false"

4. 直接程式碼中設定 mWebView.setBackgroundColor(0); (無效)

5.最後抓著頭皮我在 mWebView.setBackgroundColor(0);  基礎上設定了他的透明度為 2 結果ok 有效

程式碼如下:

  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); // 載入完之後進行設定顯示,以免載入時初始化效果不好看