Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was wandering whether there is a way to perform animations between activities like you see when you press the search in google maps (it slides down from the top). From my research I have gathered it us only possible been views. Am I missing something?

share|improve this question

1 Answer

up vote 3 down vote accepted

The formal way is overridePendingTransition but is available to API level >= 5 a.k.a android 2.0

you can .. check this out using viewflipper to switch , but is't not seperate activities

share|improve this answer
2  
Also note that the user has the ability to toggle off these inter-activity animations (default or any of your overrides), AFAIK. – CommonsWare Oct 6 '10 at 22:34
Thanks I am using 1.6 but guess I could use reflection for this. – Jason Oct 7 '10 at 6:31
Or maybe it isn't available for me to override because I am on 1.6? – Jason Oct 7 '10 at 6:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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