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
  • 28,313
  • 34
  • 134
  • 217

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
  • 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