Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm struggling to create a WebView with transparent background.

webView.setBackgroundColor(0x00FFFFFF);
webView.setBackgroundDrawable(myDrawable);

Then I load a html page with

<body style="background-color:transparent;" ...

The background color of the WebView is transparent but as soon as the page is loaded, it's overwritten by a black background from the html page. This only happens on android 2.2, it works on android 2.1.

So is there something to add in the html page code to make it really transparent ?

share|improve this question
I'm sorry to say, but for my problem no solution listed here worked... :=( thx anyways.. the webpage always used a white background... – cV2 Sep 6 '12 at 5:53

13 Answers

This worked for me,

mWebView.setBackgroundColor(0x00000000);
share|improve this answer
Have you really tested on os 2.2 ? – jptsetung May 8 '11 at 9:13
Yeah, on Nexus One. – scottyab May 8 '11 at 11:00
30  
I found that this has to be called AFTER loading the url or data. – Mark Jul 21 '11 at 18:07
9  
it doesn't work in android 3.x if you are using android:hardwareAccelerated="true" – Macarse Jul 28 '11 at 18:46
1  
Note that on ICS(4.0.3), in addition to above comments; I had to disable "Settings -> Developer Options -> Force GPU Rendering" to get transparency to work with API level 10. – Aki Aug 28 '12 at 21:57
show 9 more comments
up vote 28 down vote accepted

Actually it's a bug and nobody found a workaround so far. An issue has been created. The bug is still here in honeycomb.

Please star it if you think it's important : http://code.google.com/p/android/issues/detail?id=14749

share|improve this answer

At the bottom of this earlier mentioned issue there is an solution. It's a combination of 2 solutions.

webView.setBackgroundColor(0x00000000);
webView.setLayerType(WebView.LAYER_TYPE_SOFTWARE, null);

When adding this code to the WebViewer after loading the url, it works (API 11+).

It even works when hardeware acceleration is ON

share|improve this answer
2  
This worked for me.. tested on JellyBean – Mahendra Sep 18 '12 at 5:48
1  
It Works as long as the Webview is not scrollable. – Rany A. Ishak Nov 16 '12 at 13:14
1  
It works also before loading content. Tested on 4.0.4 – kinghomer Feb 18 at 11:17
I needed set background color after force software rendering on samsung S3 – neworld May 16 at 10:34

I had the same issue with 2.2 and also in 2.3. I solved the problem by giving the alpa value in html not in android. I tried many things and what I found out is setBackgroundColor(); color doesnt work with alpha value. webView.setBackgroundColor(Color.argb(128, 0, 0, 0)); will not work.

so here is my solution, worked for me.

      String webData = StringHelper.addSlashes("<!DOCTYPE html><head> <meta http-equiv=\"Content-Type\" " +
            "content=\"text/html; charset=utf-8\"> </head><body><div style=\"background-color: rgba(10,10,10,0.5); " +
            "padding: 20px; height: 260px; border-radius: 8px;\"> $$$ Content Goes Here ! $$$ </div> </body></html>");

And in Java,

    webView = (WebView) findViewById(R.id.webview);
    webView.setBackgroundColor(0);
    webView.loadData(webData, "text/html", "UTF-8");

And here is the Output screenshot below.enter image description here

share|improve this answer
Very usefull. Thanks ! – devMatt Aug 9 '12 at 14:00
1  
This worked well for me on every version that I tested. – justingarrick May 15 at 17:50

Following code work for me, though i have multiple webviews and scrolling between them is bit sluggish.

v.setBackgroundColor(Color.TRANSPARENT);
Paint p = new Paint();
v.setLayerType(LAYER_TYPE_SOFTWARE, p); 
share|improve this answer
2  
This works on Honeycomb, but unfortunately not on ICS. Damn. But if you use it, it is more easier to specify it in the layout file using the "android:layerType" property as this will also work well on older releases where the tag will simply be ignored. – sven Mar 1 '12 at 21:10
2  
What's working even on ICS is to deactivate hardware acceleration for the whole activity using android:hardwareAccelerated="false" in the AndroidManifest for the activity element. – sven Mar 1 '12 at 22:22
1  
There is unnecessarily to create Paint object. v.setLayerType(LAYER_TYPE_SOFTWARE, null); also will work. – Sergey Glotov Mar 12 '12 at 12:24
  • After trying everything given above. I found it doesn't matter either you specify
    webView.setBackgroundColor(Color.TRANSPARENT) before or after loadUrl() /loadData().
  • The thing that matters is you should explicitly declare android:hardwareAccelerated="false" in the manifest.

Tested on IceCream Sandwich

share|improve this answer

This is how you do it:

First make your project base on 11, but in AndroidManifest set minSdkVersion to 8

android:hardwareAccelerated="false" is unnecessary, and it's incompatible with 8

wv.setBackgroundColor(0x00000000);
if (Build.VERSION.SDK_INT >= 11) wv.setLayerType(WebView.LAYER_TYPE_SOFTWARE, null);

this.wv.setWebViewClient(new WebViewClient()
{
    @Override
    public void onPageFinished(WebView view, String url)
    {
        wv.setBackgroundColor(0x00000000);
        if (Build.VERSION.SDK_INT >= 11) wv.setLayerType(WebView.LAYER_TYPE_SOFTWARE, null);
    }
});

For safety put this in your style:

BODY, HTML {background: transparent}

worked for me on 2.2 and 4

share|improve this answer
Just setting the layer type worked for me. :) Thanks. – Kyle Feb 8 at 16:51
this works for me: android:hardwareAccelerated="false" BODY, HTML {background: transparent} – jayellos Apr 4 at 7:39

Use this

WebView myWebView = (WebView) findViewById(R.id.my_web);

myWebView.setBackgroundColor(0);
share|improve this answer

below code works fine Android 3.0+ but when you try this code below android 3.0 then your app forcefully closed.

webView.setLayerType(WebView.LAYER_TYPE_SOFTWARE, null);

You try below code on your less then API 11.

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

Or

you can also try below code which works on all API fine.

    webview.setBackgroundColor(Color.parseColor("#919191"));
    if (Build.VERSION.SDK_INT >= 11) {
        webview.setLayerType(WebView.LAYER_TYPE_SOFTWARE, null);
    }

above code use full for me.

share|improve this answer

Try webView.setBackgroundColor(0);

share|improve this answer
There is no difference between webView.setBackgroundColor(0x00FFFFFF); and webView.setBackgroundColor(0x00); Both are supposed to be transparent color. – jptsetung Mar 1 '11 at 8:26

set the bg after loading the html(from quick tests it seems loading the html resets the bg color.. this is for 2.3).

if you're loading the html from data you already got, just doing a .postDelayed in which you just set the bg(to for example transparent) is enough..

share|improve this answer

Just use these lines .....

webView.loadDataWithBaseURL(null,"Hello", "text/html", "utf-8", null);
webView.setBackgroundColor(0x00000000);

And remember a point that Always set background color after loading data in webview.

share|improve this answer

Try webView.setBackgroundColor(Color.parseColor("#EDEDED"));

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.