I am creating a database and I have managed to create and store data in LogCat. I am wondering how to display this data on the emulator screen so users can view it. Here is some of my code:
Log.d("Insert: ", "Inserting ..");
db.addContact(new Contact("Andy", "123456789"));
db.deleteContact(new Contact(29, "John", "9100000000"));
// Reading all contacts
Log.d("Reading: ", "Reading all contacts..");
List<Contact> contacts = db.getAllContacts();
for (Contact cn : contacts) {
String log = "Id: "+cn.getID()+" ,Name: " + cn.getName() + " ,Phone: " + cn.getPhoneNumber();
// Writing Contacts to log
Log.d("Name: ", log);
I have managed to create and store data in LogCat.strange :) – M Mohsin Naeem Nov 18 '12 at 18:06