[Solved] Approaches to storing data in Android


Yes You are correct You can use SqLite Database for storage
other ways to store data is SharedPreferences
But in your case you wanrted to save questions and answers which is static one so you can create a text file and put that in your assets folder and you can read that file as any other text file in java

Refer this link how to read file from assets folder

1.Sqlite Database

2.Shared preferences

3.Internal memory

4.external memory i.e sd card

0

solved Approaches to storing data in Android