Using local databases for persisting data is fairly easy in Android because of the in-built SQLite Database it provides. If you have used it before, you would know that you would have to extend a helper class named 'SQLiteOpenHelper' for the purpose. The SQLiteOpenHelper class is a part of the Native Android library, therefore you … Continue reading How to use a pre-populated database in Android?
Tag: sqlite
How to populate a ListView from a Database in Android?
Only app developers would know what it feels like when your app screen seems to take seconds to load. Populating a ListView from a database is necessary in almost any serious app that you make. Here is a way to do it.