I'm new to Android and I need some help on how to create a Quiz layout for my app.
I currently have a Quiz object with a list of Questions. Each question has a type which can be: Single Line, Single Choice, Multiple Choice, YesNo, TrueFalse.
I've been doing some research and I've found that there are a couple of UI components that might help me:
ViewPager
ViewFlipper
ViewSwitcher
So I was planning on creating a template for each question type and then load them dynamically for each question in the Quiz.
Any ideas?