SQLite
 sql >> Database >  >> RDS >> SQLite

Come ottenere valori db SQLite in Arraylist su Listview

Dovrebbe essere diretto. Basta fare:

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

Inoltre, assicurati di modificare aList dal tipo SQLPojo a SQLPojo.UserDetails .