tags:

views:

21

answers:

1

Hi guys. I am a new developer for Android. I wanna know about View transitions.

For my application, it has 5 screens that can shift each other.

In order word, Screen1 -> Screen2 <--> Screen3 <--> Screen4 -> Screen5.

How to make this screen transition on Android ?

Please share the knowledge.

Thanks in advance.

A: 

Ideally, set them up as separate activities, using BACK to move back in the stack and something in your UI to move forward.

If that is unacceptable, try ViewFlipper to switch between them.

CommonsWare