Skip to content

Instantly share code, notes, and snippets.

@cesarferreira
Created May 12, 2014 15:31
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cesarferreira/38bf26a68317ac15f1dc to your computer and use it in GitHub Desktop.
Save cesarferreira/38bf26a68317ac15f1dc to your computer and use it in GitHub Desktop.
Android - Disable activity slide-in animation when launching new activity
<!-- Developer should create a style -->
<style name="noAnimTheme" parent="android:Theme">
<item name="android:windowAnimationStyle">@null</item>
</style>
<!-- Then in manifest set it as theme for activity or whole application. -->
<activity android:name=".ui.ArticlesActivity" android:theme="@style/noAnimTheme">
</activity>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment