/* This is a quiz application quiz questions are all related to earth (Geo). source of questions: https://matadornetwork.com/life/can-answer-21-geography-questions-everyone-know-quiz/ */ This is an attempt to learn AndroidProgramming, so we develop this applictaion starting with basic version(v1.0) and then move to complex versions exploring Android concepts
GeoQuiz Version 1.0 //(See for project after first Commit) This is a basic version (v1.0) of the quiz application,
From this you will learn following concepts
- How to customize TextView's text font.
- How to make android toast. (customize toast)
- How to respond to user interactions: what should happen when a button is clicked.
- generating random numbers
Requirements are as follows
-
This android application has to have 1 Activity with 3 widgets( TextView for question,True or false buttons to take user response) Layouts should auto adjust depending on screen size (AutoLayout)
-
We use MVC(Model View Controller) programming paradigm to meet requirements
-
Display the user if he is correct or wrong usng a Toast message.
-
You have to get a random question from set of predefined questions each time user launches application.