我有下面的发送类列表
list = fetchdata.queryBuilder().selectColumns("fullname","phonenumber","showtext").query();
我怎样才能在我的ListView
那有 3TextView
秒?
您应该设置BaseAdapter
a getView
,将每列设置为特定的TextView
.
阅读此内容以获取更多详细信息: http: //docs.xamarin.com/guides/android/user_interface/working_with_listviews_and_adapters
ListView 实例需要一个 Adapter 来为其提供行视图中包含的数据。
您query()
上面的命令为您提供了一个Cursor
对象,您可以在 a 中使用它CursorAdapter
来填充ListView
.