android webview 設定背景透明色

來源:互聯網
上載者:User

android WebView 設定背景色為透明色

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

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


[html]
android:background="@android:color/transparent" 

android:background="@android:color/transparent"
2.設定載入的html為透明背景圖片(無效)


[java]
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>"; 

 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.網上所謂的 (無效)


[html]
android:layerType="software"  

android:layerType="software"
或者


[html]
android:hardwareAccelerated="false" 

android:hardwareAccelerated="false"
4. 直接代碼中設定 mWebView.setBackgroundColor(0); (無效)

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

  代碼如下:


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

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

 


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.