歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux編程 >> Linux編程 >> Android webview 設置背景透明色

Android webview 設置背景透明色

日期:2017/3/1 9:44:46   编辑:Linux編程

Android WebView 設置背景色為透明色

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

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

更多Android相關信息見Android 專題頁面 http://www.linuxidc.com/topicnews.aspx?tid=11

Copyright © Linux教程網 All Rights Reserved