views:

376

answers:

1

I'm thinking about using a ViewFlipper for an Wizard like Activity. But I see one problem with this approach. The back button. Will the back button go back to the last shown activity or will the the Viewflipper somehow catch the back button event and only change to the last shown activity?

I suspect the ViewFlipper to be treated as one Activity on the BackStack so is seems that is the wrong aproach for a wizard. Is this correct?

+2  A: 

ViewFlipper is just a View; it does no special handling of the back button. When you hit the back button on an Activity with a ViewFlipper, it doesn't matter how many times it's flipped, you'll back out of that Activity.

Daniel Lew
That being said you can catch the back button and use it to unroll the ViewFlipper and then if the ViewFlipper is empty you can back out of the Activity.
CaseyB
True enough, but the Activity guidelines states that you should not take over the back button unless you absolutely need to: http://developer.android.com/intl/zh-TW/guide/practices/ui_guidelines/activity_task_design.html#taking_over_back_key
Daniel Lew