Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an activity which launches another activity, via a button click. By default, on newer OS versions of android, the OS will animate the new activity sliding in from right to left.

Is there a way to disable this animation? I just want the new activity to appear without any sort of animation.

Thanks

share|improve this question

4 Answers

The FLAG_ACTIVITY_NO_ANIMATION flag works fine for disabling the animation when starting activities.

To disable the similar animation that is triggered when calling finish() on an Activity, i.e the animation slides from right to left instead, you can call overridePendingTransition(0, 0) after calling finish() and the next animation will be excluded.

This also works on the in-animation if you call overridePendingTransition(0, 0) after calling startActivity(...).

share|improve this answer
5  
Note that FLAG_ACTIVITY_NO_ANIMATION and overridePendingTransition are both API Level 5+ only. – azdev Nov 1 '11 at 17:02
This does not help when going back from an activity on the Back key press. – Yar Jul 31 '12 at 12:58
1  
check my answer.. – Ewoks Dec 12 '12 at 9:53

IMHO this answer here solve issue in the most elegant way..

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>

Voila! Nice and easy..

p.s. credits to original author please..

share|improve this answer
this is much more elegant – Dmitry Zaitsev Jul 31 '12 at 13:04
Does this work for activity Back also? – Atul Bhardwaj Dec 11 '12 at 16:16
yeap, it works.. ;) Hope u find it useful.. Cheers – Ewoks Dec 12 '12 at 9:50
It doesn't work for Back, and it changes the look of title bar (it makes it small)... – Marek May 22 at 3:14

Just specify Intent.FLAG_ACTIVITY_NO_ANIMATION flag when starting

share|improve this answer

Apply

overridePendingTransition(0, 0); 

startActivity(new Intent(FirstActivity.this,SecondActivity.class));

This will stop the animation.

share|improve this answer

protected by Cristian Feb 25 '11 at 2:46

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.