展会信息港展会大全

android webview 设置背景透明色
来源:互联网   发布日期:2015-10-02 21:31:06   浏览:2417次  

导读:android WebView 设置背景色为透明色在网上找了 好多的方法都试过了 都不行1.直接设置成background 为透明色 或者透明图片 (无效)[html]android...

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); // 加载完之后进行设置显示,以免加载时初始化效果不好看

赞助本站

人工智能实验室

相关热词: android开发 教程

AiLab云推荐
展开

热门栏目HotCates

Copyright © 2010-2024 AiLab Team. 人工智能实验室 版权所有    关于我们 | 联系我们 | 广告服务 | 公司动态 | 免责声明 | 隐私条款 | 工作机会 | 展会港