Android WebView 背景颜色

Posted

技术标签:

【中文标题】Android WebView 背景颜色【英文标题】:Android WebView background color 【发布时间】:2012-06-10 18:20:45 【问题描述】:

我正在向我的布局中添加一个 WebView 以显示对齐的文本。我想将 WebView 的背景设置为透明以显示为 textView。这是我所做的:

WebView synopsis;
synopsis=(WebView)findViewById(R.id.synopsis);
synopsis.setBackgroundColor(0x00000000);

它可以在模拟器上运行,但是当我在我的设备上运行应用程序时它不起作用:我得到的是白色背景。

 String textTitleStyling = "<head><style>* margin:0;padding:0;font-size:20; text-align:justify; color:#FFFFFF;</style></head>";
 String titleWithStyle = textTitleStyling + "<body><h1>" + movie.synopsis + "</h1></body>";
 synopsis.loadData(textTitleStyling + movie.synopsis, "text/html", "utf-8");
 synopsis = (WebView) findViewById(R.id.synopsis);
 synopsis.getSettings();
 synopsis.setBackgroundColor(0);

【问题讨论】:

【参考方案1】:

如果我开启了深色模式,这是我可以让它工作而不首先加载初始白色背景的唯一方法:

webView.setBackgroundColor(Color.TRANSPARENT);
webView.setVisibility(View.VISIBLE);


<WebView
    android:id="@+id/web_view"
    android:layout_
    android:layout_
    android:visibility="invisible"
   />

【讨论】:

【参考方案2】:

你也可以这样做-

webview.setBackgroundColor(getContext().getResources().getColor(android.R.color.transparent));

这里android.R.color.transparent透明色,属于android fragmework。

【讨论】:

【参考方案3】:

尝试使用 synopsis.getSettings();

WebView synopsis;
synopsis=(WebView)findViewById(R.id.synopsis);
synopsis.setBackgroundColor(Color.TRANSPARENT);

【讨论】:

此方法在您直接指定颜色时有效,例如:synopsis.setBackgroundColor(Color.Black); 在 Samsung Tab 4 7" android 4.4.2 上测试 使用“getSettings()”有什么意义?你没有使用它。 我同意,“geSettings()”不是必需的。该解决方案虽然效果很好:)【参考方案4】:

试试下面的代码希望对你有用:-

webview.setBackgroundColor(Color.parseColor("#919191"));

灰色代码:#919191

【讨论】:

【参考方案5】:

你必须把它放在 XML 代码中:

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

对于您的网络视图,例如:

<WebView
    android:id="@+id/MyWebView"
    android:layout_
    android:layout_
    android:background="@android:color/transparent"
    android:scrollbars="none" />

在此之后,您必须转到 Java 代码并在 loadUrl 之前编写:

yourWebView.setBackgroundColor(Color.TRANSPARENT);

【讨论】:

我不需要将 android:background="@android:color/transparent" 放在我的 XML 中,只需执行 setBackgroundColor(Color.TRANSPARENT);在代码中。 (仅更改 XML 对我不起作用) 如果使用 Xamarin,webview.SetBackgroundColor (Android.Graphics.Color.Transparent); 就足够了。【参考方案6】:

您的 html 代码将所有内容设置为白色

替换:

String textTitleStyling = "”; 字符串 titleWithStyle = textTitleStyling + "

" + movie.synopsis + "

"; synopsis.loadData(textTitleStyling + movie.synopsis, "text/html", "utf-8"); 概要 = (WebView) findViewById(R.id.synopsis); 概要.getSettings(); 概要.setBackgroundColor(0);

与:

这会从标题样式中排除颜色,并将样式的其余部分仅应用于正文元素

String textTitleStyling = "”; 字符串 titleWithStyle = textTitleStyling + "

" + movie.synopsis + "

"; 概要.loadData(titleWithStyle, "text/html", "utf-8"); 概要 = (WebView) findViewById(R.id.synopsis); 概要.getSettings(); 概要.setBackgroundColor(0);

编辑:固定 html

【讨论】:

【参考方案7】:

您可以在这里找到一些提示:http://code.google.com/p/android/issues/detail?id=14749,也可以在这里: Android WebView style background-color:transparent ignored on android 2.2

【讨论】:

【参考方案8】:

你是否在你的 webview 中加载了 css?

类似:

synopsis.loadData(textTileStyling, "text/html", "UTF-8");

synopsis.loadDataWithBaseURL("", textTileStyling, "text/html", "UTF-8", "");

【讨论】:

或 synopsis.loadDataWithBaseURL("", textTileStyling, "text/html", "UTF-8", ""); 感谢您的回答,我编辑了我的帖子,您会发现我是如何加载数据的【参考方案9】:

我做的是

 synopsis.setBackgroundColor(0);

希望对你有帮助!

【讨论】:

也许你应该写完整的代码(包括html),因为我担心错误就在那里。 这是代码 String textTitleStyling = "";字符串 titleWithStyle = textTitleStyling + "

" + movie.synopsis + "

"; synopsis.loadData(textTitleStyling + movie.synopsis, "text/html", "utf-8");概要 = (WebView) findViewById(R.id.synopsis);概要.getSettings();概要.setBackgroundColor(0);

以上是关于Android WebView 背景颜色的主要内容,如果未能解决你的问题,请参考以下文章

android webview-android的webview怎么修改网页字体颜色和背景

如何改变webView背景颜色?

WebView设置背景色

在设备上的 WebView 中更改 PDF 周围的背景颜色

UIWebView 旋转和背景颜色

如何修改WebView 中点击文字链接时的文字背景色