[android-developers] Re: Webview shows white blank page in Ice Cream Sandwitch

2012-10-12 Thread Russ
Did calling .destroy() fix your issue? I too am getting a blank white page on all repeat visits to my app (which uses a webview). -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: Webview shows white blank page in Ice Cream Sandwitch

2012-10-05 Thread Streets Of Boston
Try this: Try call webtv.*destroy()* in your onDestroy() method. I'm just guessing here, but it's worth a try. On a side-note: Don't call 'this.finish()' in your onPause() method. That is usually bad news. On Friday, October 5, 2012 1:41:37 PM UTC-4, Power Android wrote: In my webview I

[android-developers] Re: Webview shows white blank page in Ice Cream Sandwitch

2012-10-05 Thread MathieuB
Strangely, the exact same problem happened to me today. Was testing my map embedded in a webview on android 4.0.4...and around 3 times out of 4, it was showing a blank page...don't really understand why. I'll try to call the destroy() method on the onDestroy() and see if it helps... What is