I have an activity that shows a listview, the listview is contained within a fragment.
I now need to expand the view by adding a number of other listviews (essentially filters) on the existing listview.
I plan to use a tab construct, ideally all using the same fragment.
1) Is it possible for the same fragment to be referenced multiple times within one XML layouts, if so I assume each one will need a different tag.
2) Can the tabhost be set up in such a way that it can just use the same fragment and I can manage the adapter to perform the filtering.
Which would be the best method to use?