I have a simple WebView that runs a web application on an Android. The problem is when I rotate the phone to change it to landscape the webview rel
WebView
webview
This can be resolved by overriding onSaveInstanceState(Bundle outState) in your activity and calling saveState from the Webview:
onSaveInstanceState(Bundle outState)
saveState
This blog post may be of help to you.