I want to use Jeff S. example for sectioned listview with headers.
But I want to use more complex item view.
Can you suggest me which approach is best to do this. I found two ways
- Put information in
Map<String,String> item = new HashMap<String,String>();
usingitem.put()
- example here
2.Using getView
on ArrayAdapter (without overriding other methods ) - example here
Which way is better?
Thanks