views:

46

answers:

2

I'm looking for a simple animation example using the android SDK for displaying a little animation between views.

Basically when we have a list view and a detail view - lets have a 'transition' animation between them.

Thanks

+1  A: 

ViewSwitcher supports all kind of Animation and is very easy to use.

WarrenFaith
Thanks for the Tip. I found the animation I was looking for here: http://stackoverflow.com/questions/1919169/android-viewflipper-animation.
Peanut
A: 

You can use overridePendingTransition on API 5 and above. Alternatively, you could have a ViewFlipper, with the detail and list activity in one.

iPaulPro