Activity transition in Android Activity transition in Android android android

Activity transition in Android


Here's the code to do a nice smooth fade between two Activities..

Create a file called fadein.xml in res/anim

<?xml version="1.0" encoding="utf-8"?><alpha xmlns:android="http://schemas.android.com/apk/res/android"   android:interpolator="@android:anim/accelerate_interpolator"   android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="2000" />

Create a file called fadeout.xml in res/anim

<?xml version="1.0" encoding="utf-8"?><alpha xmlns:android="http://schemas.android.com/apk/res/android"   android:interpolator="@android:anim/accelerate_interpolator"   android:fromAlpha="1.0" android:toAlpha="0.0" android:duration="2000" />

If you want to fade from Activity A to Activity B, put the following in the onCreate() method for Activity B. Before setContentView() works for me.

overridePendingTransition(R.anim.fadein, R.anim.fadeout);

If the fades are too slow for you, change android:duration in the xml files above to something smaller.


You can do this with Activity.overridePendingTransition(). You can define simple transition animations in an XML resource file.


An even easy way to do it is:

  1. Create an animation style into your styles.xml file
<style name="WindowAnimationTransition">    <item name="android:windowEnterAnimation">@android:anim/fade_in</item>    <item name="android:windowExitAnimation">@android:anim/fade_out</item></style>
  1. Add this style to your app theme
<style name="AppBaseTheme" parent="Theme.Material.Light.DarkActionBar">      <item name="android:windowAnimationStyle">@style/WindowAnimationTransition</item></style>

That's it :)