Co500
Co500

Reputation: 49

How to make an app like Logo Quiz

I'm developing a Android app that functions like the popular Logo Quiz in the Google Play Store, however, I have not come across any tutorials on how to make the check mechanics.

I know it involves a database to determine whether the answer is correct or not but I do not know how to put it to use, any tutorials are welcome :)

Also I have everything else in the app set up apart from this but (The main bit -.-)

Upvotes: 0

Views: 7295

Answers (1)

Android-Droid
Android-Droid

Reputation: 14565

To make an app like Logo Quiz you need to have some kind of relationship between logos name and it's picture. The first and the basic thing that I can think of it is just use sqlite database to store your logo name and image name. After that you can just check if it's correct after the user input.

At least that's the easiest way that I know. However, it's just an idea so maybe there is better way to do this.

Upvotes: 4

Related Questions