I have Activity for displaying search results. It extends ListActivity. I need to show search results in listview grouping several items. So, how do I add grouping to my listview?
I have Activity for displaying search results. It extends ListActivity. I need to show
Share
You give your
ListViewaListAdapterthat knows how to do the grouping.This could be a matter of overriding
getViewTypeCount()andgetItemViewType()in the adapter to describe which positions get which sorts of rows, plus modifyinggetView()(ornewView()andbindView()forCursorAdapter) as needed.Depending on what you are starting with, you might be able to use something like my
MergeAdapterinstead.