Peanut
Peanut

Reputation: 2136

Simple navigation animation with android

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

Upvotes: 2

Views: 1824

Answers (2)

Paul Burke
Paul Burke

Reputation: 25584

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

Upvotes: 0

WarrenFaith
WarrenFaith

Reputation: 57672

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

Upvotes: 2

Related Questions