ListActivity show List<Obejct>
---------------------
listTitle<String>
setListAdapter(new ArrayAdapter(this, R.layout.rsslist_item,
listTitle));
-------------------------
list<items>
public class ItemAdapter extends BaseAdapter{
...
...
...
}
setListAdapter(new ItemAdapter(this,items));
----------------------------
mCursor = managedQuery(getIntent().getData(), PROJECTION, null, null);
SimpleCursorAdapter adapter = new SimpleCursorAdapter(this, R.layout.noteslist_item, cursor,
new String[] { Notes.TITLE }, new int[] { android.R.id.text1 });
setListAdapter(adapter);
----------------------------
list<map<String,Object>>