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 textviews?

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

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -