I'm new to android development. I'm trying to make a "Did you know?" android apps. My problem is that how can I store with over 1,000 facts using SQLite database.
Do I need to need to insert every fact one by one?
I'm new to android development. I'm trying to make a "Did you know?" android apps. My problem is that how can I store with over 1,000 facts using SQLite database.
Do I need to need to insert every fact one by one?
Step #1: Create the database, with the data, on your development machine.
Step #2: Put that database in assets/
.
Step #3: Use SQLiteAssetHelper
to unpack that database and use it from within your app.