I'm programming an Android application and one feauture is a ListView
generated and populated by a MySQL Database.
This is the outputted ArrayList:
DatabaseHandler db = new DatabaseHandler(this);
List<Suspect> list = db.getAllContacts();
Do I use a cursor
to input it in my ListView
?
Any code would be appreciated..