SQLite
 sql >> Datenbank >  >> RDS >> SQLite

So erhalten Sie SQLite-DB-Werte in Arraylist in Listview

Es sollte direkt sein. Mach einfach:

public void viewAllData( ) {
  aList = getUserInfo(); //this is where you call the local database.
  myAdapter = new SQLCustomViewAllDataAdapter( SQLViewAllData.this,aList);
  myListView.setAdapter( myAdapter );
}

Stellen Sie außerdem sicher, dass Sie eine Liste vom Typ SQLPojo ändern zu SQLPojo.UserDetails .