1

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?

Ollie C
  • 27,760
  • 34
  • 128
  • 213

1 Answers1

-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
  • 10,920
  • 9
  • 45
  • 47
  • 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