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
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
ViewSwitcher
supports all kind of Animation
and is very easy to use.
You can use overridePendingTransition on API 5 and above. Alternatively, you could have a ViewFlipper, with the detail and list activity in one.