Cursor cursor = db.query("contato", new String[] {"_id", "nome", "telefone"}, null, null, null, null, null); cursor.moveToFirst(); while (!cursor.isAfterLast()) { long id = cursor.getLong(0); String nome = cursor.getString(1); String telefone = cursor.getString(2); Contato contato = new Contato(id, nome, telefone); list.add(contato); cursor.moveToNext(); } return list; } Listar Contatos