Different Android devices use different animations to move between activities. How do I access the one that is currently being used, from my own code?
Asked
Active
Viewed 287 times
1 Answers
-2
you should override overridePendingTransition(int , int)
inside your activity.
Activity transition in Android
Edit:
well, I think this is what you want http://developer.android.com/reference/packages.html

Community
- 1
- 1

a fair player
- 11,530
- 9
- 46
- 48
-
You're telling me how to set the animation for activities, which is not what I want. I want to access the default animation (so I can use it elsewhere in my app, for consistency). – Ollie C Jan 26 '12 at 13:40