Ivan
Ivan

Reputation: 713

How to avoid re-creating activity when fill screen mode changed in android 3.2?

In android 3.2, it adds a new compatibility zoom mode to give a new way to view fixed-sized apps on larger devices.

When switch fill screen mode(from zoom mode to stretch mode or from stretch mode to zoom mode), the activity will be re-created.

Is there any method to avoid re-creating activity?

Upvotes: 0

Views: 238

Answers (2)

DonGru
DonGru

Reputation: 13710

I think this circumstance belongs to the category "Run Time Changes" - similar to the screen rotation. Have a look here to see how to deal with that:
http://developer.android.com/guide/topics/resources/runtime-changes.html

Upvotes: 0

Lalit Poptani
Lalit Poptani

Reputation: 67296

Have you tried this in your AndroidManifest.xml

android:configChanges="keyboardHidden|orientation"

Hope this works for you.

Upvotes: 1

Related Questions