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?

link|improve this question
feedback

3 Answers

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.

link|improve this answer
Note: a bug in 2.2+ prevents this working anymore. See goo.gl/iEogJ – fiXedd Jun 6 '11 at 16:58
Works fine in 2.2 for me! – jamesw May 1 at 12:44
feedback

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

webView.setBackgroundColor(0);
WebView.setBackgroundResource(R.drawable.yourImage);
link|improve this answer
Not working on Galaxy Tab 10.1 (Android 3.1) – embo Sep 5 '11 at 9:28
thanks bro....it's working for me... – Kalpesh Mar 26 at 6:32
feedback

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

android:hardwareAccelerated="false"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown