Search code examples
androidandroid-activityandroid-orientationandroid-screen

Android: How do I disable reload page on change screen orientation?


I have a activity. I have a process and this is very long. I changed the screen orientation (portrait to landscape), they process is start again... I want to disable onCreate() on change screen orientation.

How make I this?


Solution

  • Add this to your manifest under <activity>:

    android:configChanges="keyboardHidden|orientation|screenSize"