Simple Quiz App using Android Studio and Java

Simple Quiz App using Android Studio and Java

hello Coders, In this post I am sharing my Quiz App project. Developed in Android studio and Using JAVA as programming language. In this tutorial we are building simple android application which allows user to play quiz game with four option in limited amount of time.

Project Details

Title : Simple Quiz App

Language : Java

IDE : Android Studio (latest version)

Data Source : No database, for tutorial purposes using static data directly from java file.

Checkout this YouTube video for instruction and Coding.

Android Simple Quiz Application
Data source :
 //load data
        queList.add(new QuestionClass("This is dummy Que 1", "ans 1", "ans 2",
                "ans 3", "ans 4", "ans 1"));
        queList.add(new QuestionClass("This is dummy Que 2", "ans 1", "ans 2",
                "ans 3", "ans 4", "ans 2"));
        queList.add(new QuestionClass("This is dummy Que 3", "ans 1", "ans 2",
                "ans 3", "ans 4", "ans 3"));
Get Source Code of This Project

Source code at github : https://github.com/rajjani88/quizapplication

i Hope this post will help you to build your own Quiz Application. For more Android tutorials subscribe to my YouTube Channel Raj Jani

If you need any help in android app development i am one dm away. Thanks for reading this blog. See you in the next post.

Raj Avatar