在Android中将webview背景图像设置为资源图形

发布于 2024-08-01 17:17:49 字数 281 浏览 8 评论 0原文

我正在尝试将 webview 的背景设置为 Android 中的可绘制图像资源。

从sdk来看,类似的东西似乎可以工作,但事实并非如此。

WebView web = (WebView) findViewById(R.id.webView);

web.setBackgroundResource(R.drawable.backgroundmain);
web.loadData(profile, "text/html", "UTF-8");

有任何想法吗?

I'm trying to set the background of a webview to a drawable image resource in Android.

From the sdk it seems something like this would work but it doesn't.

WebView web = (WebView) findViewById(R.id.webView);

web.setBackgroundResource(R.drawable.backgroundmain);
web.loadData(profile, "text/html", "UTF-8");

Any idea's?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

过期情话 2024-08-08 17:17:50

一如既往,当你提出问题时,你往往会立即弄清楚这些事情。 为了其他人的利益,我正在使用的布局 LinearLayout 可以采用背景参数,该背景参数可以是颜色或资源。

所以在我的views.xml文件中我简单地添加了一个

android:background="@+drawable/backgroundmain"

并使用

web.setBackgroundColor(0);

使webview透明以查看后面的背景图像。

As always you tend to figure these things out as soon as you ask the question. For the benefit of others, the layout that I'm using, LinearLayout, can take a background parameter that can be a colour or a resource.

So in my views .xml file I simply added a

android:background="@+drawable/backgroundmain"

and use

web.setBackgroundColor(0);

To make the webview transparent to see the background image behind.

和影子一齐双人舞 2024-08-08 17:17:50

如果你这样做,它会完美地工作:

webView.setBackgroundColor(Color.TRANSPARENT);
webView.setBackgroundResource(R.drawable.your_image);

It will work perfectly, if you do something like this:

webView.setBackgroundColor(Color.TRANSPARENT);
webView.setBackgroundResource(R.drawable.your_image);
风尘浪孓 2024-08-08 17:17:50

如果不适用于 Android 3.1,请尝试修复 AndroidManifest.xml

android:hardwareAccelerated="false"

If not working on Android 3.1, try fix the AndroidManifest.xml:

android:hardwareAccelerated="false"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文