Is it possible to define the transition between two activities for Android 1.5 and better? I would like an activity to fade in.
|
You can do this with |
|||||||||||
|
|
Here's the code to do a nice smooth fade between two Activities.. Create a file called fadein.xml in res/anim
Create a file called fadeout.xml in res/anim
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.
If the fades are too slow for you, change android:duration in the xml files above to something smaller. |
|||||||||||
|
|
Yes. You can tell the OS what kind of transition you want to have for your activity.
Where ANIMATION is an integer referring to a built in animation in the OS. |
|||||||||||||||||||
|
|
create res>anim>fadein.xml
create res>anim>fadeout.xml
In res>values>styles.xml
In activities onCreate()
|
|||||||||||
|
|
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. |
|||||
|
|
|
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. |
|||||
|


overridePendingTransition-related answers below: You can pass(0, 0)if you want no animation at all. – dokkaebi Dec 14 '12 at 21:47