tags:

views:

58

answers:

1

Hi,

I have a generic list in android.

for other hand i have a listview.

How i could bind the generic list into the listview?

Thanks in advance. Best regards. Jose

+4  A: 

Use an ArrayAdapter, if the "generic collection" implements the List interface. Otherwise, create your own Adapter class, extending BaseAdapter.

CommonsWare