Skip to content

Instantly share code, notes, and snippets.

@AlexHedley
Last active August 29, 2015 14:14
Show Gist options
  • Save AlexHedley/a128ce976d9d2f0dee92 to your computer and use it in GitHub Desktop.
Save AlexHedley/a128ce976d9d2f0dee92 to your computer and use it in GitHub Desktop.
Stop Reload of Page when Orientation changes
<activity
android:name=".YourActivityName"
android:configChanges="orientation|screenSize" >
</activity>
//http://stackoverflow.com/questions/5913130/dont-reload-application-when-orientation-changes
<activity
android:screenOrientation="portrait" >
</activity>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment