Straight to point:
I am making a Quizz app in Android studio. I would like to get the question (and answers) that will fill the app from SQL table that i made in DB browser for SQLite.
My question is how do i connect those two (without rettyping all those question in android studio).
I have in somethin like a structure {ID, qusetion, answer} and I only point ID number i whant to fetch from the table and it fills my array in android studio.
I hope this make sense :)
Regards
You could put every question and answer in a file, line by line, things separated by a specific character.
ex:
And read the file, and insert everything them in the database on the first time you open the app.