I currently use a ViewSwitcher in my app but now I'm facing a problem because I need more than 2 views to switch between. As ViewSwitcher does not accept more than 2 children, I've read that it's possible to use the Gallery widget to do so.
Each view in the ViewSwitcher is different (one is a LinearLayout with a ListView and a Button inside and the other one is a LinearLayout with an ImageView and a TextView inside).
Will I be able to use the Gallery widget given my requirements?
Can anyone point me to the right direction? Some tutorial/example or so..?
Thank you.