vote up 1 vote down star
1

Hi,

Just started working with the webview. The issue is performance following rotation. The WebView has to reload the page, which can be a bit tedious.

What's the best of of handling an orientation change without reloading the page from source each time?

Thanks

Glenn

flag
By "reloading from source" do you mean it's downloading the page again, or just re-rendering it? – fiXedd Jun 23 at 9:18
Just re-rendering it. – glennanthonyb Jun 26 at 9:31

2 Answers

vote up 0 vote down

One compromise is to avoid rotation. Add this to fix the activity for Portrait orientation only.

android:screenOrientation="portrait"
link|flag
vote up -1 vote down

@Override protected void onSaveInstanceState(Bundle outState) { super.onSaveInstanceState(outState);

}

@Override
protected void onRestoreInstanceState(Bundle state) {
	super.onRestoreInstanceState(state);

}

These methods can be overridden on any activity, it just basically allows you to save and restore values each time an activity is created/destroyed, when the screen orientation changes the activity gets destroyed and recreated in the background, so therefore you could use these methods to temporary store/restore states during the change.

You should have a deeper look into the two following methods and see whether it fits your solution.

http://developer.android.com/reference/android/app/Activity.html

link|flag

Your Answer

Get an OpenID
or

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