Created
May 12, 2014 15:31
-
-
Save cesarferreira/38bf26a68317ac15f1dc to your computer and use it in GitHub Desktop.
Android - Disable activity slide-in animation when launching new activity
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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