HI,
I would like to know if it is possible to display Arraylist of object's value in setListadapter or SimpleAdapter for listview?
String ArrayList works fine, I am just trying my luck with Object ArrayList
ArrayList<userinfo> list = new ArrayList<userinfo>();
setListAdapter(new ArrayAdapter<userinfo>(this, R.layout.messages, list)); // list.???
userinfo class consist of all the getters and setters.
String ArrayList(Working Version) @ http://developer.android.com/resources/tutorials/views/hello-listview.html