Creating a Quiz Android App

This is a tutorial on creating a quiz in Android. After this tutorial you will be able to create your own Android App with your own quiz. Follow the instructions given below to learn how to create a quiz app in Android. 1. Download Sketchware App for Android devices. 2. Open Sketchware and start a new project. Enter the app name and other details as per your wishes and click save. 3. Now in the View area (main.xml), insert a Scroll(V) and inside that a Linear(V) . Set the width of both the Layouts to match parent and set the padding of Scroll(V) to 0. Also set the background color of Linear(V) to green or a color of your choice, and gravity of Linear(V) to center_horizontal, center_vertical. 4. Now insert 4 button widgets (depends on your requirement), one each for each of the quiz. Each quiz can have several questions. Rename the buttons as Quiz1, Quiz2, Quiz3 and Quiz4 respectively. Now for each of the buttons: increase font size to 18, set margin of each to 8,...