Yeap. I want to change my ** webview's background color and font size.** How i can for it?

link|improve this question

10% accept rate
feedback

3 Answers

Assuming that you have defined your webview in an XML layout resource you can do the following:

WebView myWebView = (WebView) findViewById(R.id.myWebView);
myWebView.setBackgroundColor(Color.parseColor("#000000"));
myWebView.getSettings.setDefaultFontSize(10);

You may also want to enable javascript and create a simple WebClient to handle page loading

Hope it helps!

link|improve this answer
Thanks, I left one thing "font color". Please..... – zayar Aug 2 '10 at 16:32
I didn't see any thing regarding changing font color in the API documentation. I don't think it's possible. – jagsaund Aug 2 '10 at 17:18
feedback

You could call some javascript that would modify the CSS of the loaded page.

link|improve this answer
feedback

I would think you can't - unless you control the html data displayed.

The font and background are controlled by the html data feed to the Webview and not the Webview itself.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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