Cata
Cata

Reputation: 11211

android WebView change color

I want to change the background color of a webview when I press a button.. for that I use use webview.setBackgroundColor(Color.BLUE); but the color never changes until I load something on the webview.. Does somebody know how to fix this?

Thank you!

Upvotes: 0

Views: 1313

Answers (1)

user634618
user634618

Reputation: 3593

You could call invalidate() on your WebView object. See here.

Upvotes: 2

Related Questions