I have a WebView and while it loads the page which takes some seconds I want to show something other than a white screen, so I'm loading static data before loading the first page
webview.loadDataWithBaseURL("/", wait_html, "text/html", "UTF-8", "");
Now, when I press the back button my activity is destroyed and when I restart it, more often than not, I get a warning like:
webcore Can't get the viewWidth after the first layout
and my static content is not displayed but the page that is loaded after is displayed without problems. So... any suggestions on how to make it show my static content?