android - Listview and List<class> -
i have below list of send class
list = fetchdata.querybuilder().selectcolumns("fullname","phonenumber","showtext").query();
how can show in listview
has 3 textview
s?
you should set baseadapter
getview
sets each column specific textview
.
read further detail : http://docs.xamarin.com/guides/android/user_interface/working_with_listviews_and_adapters
a listview instance requires adapter feed data contained in row views.
your query()
command above gives cursor
object can use in cursoradapter
populate listview
.
Comments
Post a Comment