Adding multiple views to a listview.
- by hwrdprkns
Hey guys,
I tried to add these views to list view using this kind of factory but everytime I try and add the view to a ListActivity, it comes up with nothing. What am I doing wrong? I set my list views like so:
List<View> views = new ArrayList<View>();
for(int x =0;x<tagg_views.size();x++)
{
lv.addHeaderView(views.get(x));
}