Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have created a webview with a transparent background.

            browser = new WebView(ActivityActivate.this);
            browser.setBackgroundColor(0);
            browser.getSettings().setJavaScriptEnabled(true);
            browser.addJavascriptInterface(new JavascriptInterface(), "javaInterface");               
            browser.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);
            browser.getSettings().setSupportZoom(true);
            browser.loadDataWithBaseURL("https://checkout.google.com", form, "text/html", "UTF-8", null);
            llPaymentButtons.addView(browser);

Here is the JavaInterface that should change the color of the background when the html form is submitted and all the checkboxes pass the test.

    /**
     * Interface for Javascript communication
     */
    private class JavascriptInterface {

        //This is in fact used but from JavaScript
        @SuppressWarnings("unused")
        public boolean checkboxPass() {
            if( acceptsConditions() && acceptsLicense() && acceptsRefundPolicy() ) {
                browser.setBackgroundColor(Color.WHITE);
                return true;
            }
            return false;
        }
    }

This does not work however, and the returned document still has a transparent background. What am I doing wrong, it seems that browser.setBackgroundColor(Color.WHITE); does nothing?

share|improve this question
Are you sure that the code was executed at all? Have you set up a breakpoint on the set color line? – Konstantin Burov Nov 16 '10 at 11:51
It was in fact executed but from the wrong Thread, it seems a Handler() fixed the issue – jax Nov 16 '10 at 12:00

2 Answers

up vote 8 down vote accepted

you can override webview background with setbackgroundResource method,

try like this you will get it,

                wv.setBackgroundColor(0);
                wv.setBackgroundResource(color.blue);
                wv.loadUrl(url); 
share|improve this answer
   
It doesn't look like @jax need to reload WebView content.. – Konstantin Burov Nov 16 '10 at 11:50
Get this error - 11-16 18:59:09.922: ERROR/AndroidRuntime(1113): FATAL EXCEPTION: WebViewCoreThread 11-16 18:59:09.922: ERROR/AndroidRuntime(1113): android.view.ViewRoot$CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views. – jax Nov 16 '10 at 11:56
This is because I am doing it from the JavaScript Interface...Not sure what I should do... – jax Nov 16 '10 at 11:56
I used a Handler and it worked, thanks – jax Nov 16 '10 at 11:59
you should use View.post() or Activity.runOnUiThread() methods. they run the Runnable on UI thread. – babay Dec 13 '12 at 18:30

Currently, we could webview.setBackgroundColor(Color.TRANSPARENT) in onLayout(), and then add 'style="background-color:white;"' into html element.

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.