Adding multiple views to a listview.
Posted
by hwrdprkns
on Stack Overflow
See other posts from Stack Overflow
or by hwrdprkns
Published on 2010-06-15T22:29:08Z
Indexed on
2010/06/15
22:32 UTC
Read the original article
Hit count: 204
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)); }
© Stack Overflow or respective owner