Is it possible to define the transition between two activities for Android 1.5 and better? I would like an activity to fade in.

link|improve this question

79% accept rate
feedback

6 Answers

up vote 24 down vote accepted

You can do this with Activity.overridePendingTransition(). You can define simple transition animations in an XML resource file. A good tutorial on this can be found here.

link|improve this answer
Thanks iandisme. overridePengingTransition is API level 5. Is it not possible to do this for level 3 (Android 1.5)? – hgpc Aug 2 '10 at 16:11
Ah, you're right. CaseyB's answer is probably more along the lines of what you're looking for. – iandisme Aug 2 '10 at 16:13
Haven't found yet how to do a proper fade in with CaseyB's answer. – hgpc Aug 2 '10 at 17:47
You can do this in your Activity's onCreate function. – Max Howell Mar 20 at 12:37
On HTC you have to change settings > display > animation to all for it to work (or at least on HTC Desire HD). – Urboss May 1 at 14:57
feedback

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.

link|improve this answer
9  
Just to add to this. overridePendingTransition() will need to be called again, right after the OS decides to close your Activity. I just put another identical call to overridePendingTransition(fadein,fadeout) in the Activity's onPause() method. Otherwise, you'll see the Activity fade in, but not fade out when closed. – Nate Aug 24 '11 at 1:10
feedback

Yes. You can tell the OS what kind of transition you want to have for your activity.

@Override
public void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    getWindow().setWindowAnimations(ANIMATION);

    ...

}

Where ANIMATION is an integer referring to a built in animation in the OS.

link|improve this answer
Do I have to do something else for it to work? getWindow().setWindowAnimations(android.R.anim.fade_in) doesn't result in the push transition that was used by default, but it's not a fade transition either. The new activity just appears over the previous one in a Nexus One device. – hgpc Aug 2 '10 at 16:33
1  
That's because this isn't asking for a resource, it's asking for the id of a transition animation built into the OS. developer.android.com/intl/fr/reference/android/view/…) – CaseyB Aug 2 '10 at 16:43
Can you provide an example? I can't find the constant. Thanks. – hgpc Aug 2 '10 at 17:11
1  
It seems setWindowAnimations only accepts style resources. getWindow().setWindowAnimations(android.R.style.Animation_Toast) is the closest I've found to a fade in, but it fades from black, not the previous activity. – hgpc Aug 2 '10 at 17:48
It doesn't have to be built in animation in the OS, you can definite a custom one in values. – ilija139 Aug 5 '11 at 12:17
feedback

You cannot use overridePendingTransition in Android 1.5. overridePendingTransistion came to Android 2.0.

If you're gonna go through this without any error you have to compile for the target (1.5 or higher) using the ordinary animations (or you own) or you have to compile for the target (2.0 or higher) using overridePendingTransistion.

Summary: You cannot use overridePendingTransistion in Android 1.5.

You can though use the built-in animations in the OS.

link|improve this answer
That is not correct. Animations are in Android well before 1.6 and you can use overridePendingTransistion with reflection to still target 1.5. – hgpc Aug 2 '10 at 17:46
Well, my mistake. Updated my post. You can surely do your own animations and customizing them as you want in 1.5. But you can still not use overridePendingTransition since it started to appear in API-level 5. – Julian Assange Aug 2 '10 at 17:57
feedback

For a list of default animations see: http://developer.android.com/reference/android/R.anim.html

There is in fact fade_in and fade_out for API level 1 and up.

link|improve this answer
e.g. getWindow().setWindowAnimations(android.R.anim.slide_in_left); – Pierre May 18 at 16:44
feedback

create res>anim>fadein.xml

<?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="500" />

create res>anim>fadeout.xml

<?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="500" />

In res>values>styles.xml

<style name="Fade">
        <item name="android:windowEnterAnimation">@anim/fadein</item>
        <item name="android:windowExitAnimation">@anim/fadeout</item>
    </style>

In activities onCreate()

getWindow().getAttributes().windowAnimations = R.style.Fade;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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