1

我有下面的发送类列表

 list = fetchdata.queryBuilder().selectColumns("fullname","phonenumber","showtext").query();

我怎样才能在我的ListView那有 3TextView秒?

4

1 回答 1

3

您应该设置BaseAdaptera getView,将每列设置为特定的TextView.

阅读此内容以获取更多详细信息: http: //docs.xamarin.com/guides/android/user_interface/working_with_listviews_and_adapters

ListView 实例需要一个 Adapter 来为其提供行视图中包含的数据。

query()上面的命令为您提供了一个Cursor对象,您可以在 a 中使用它CursorAdapter来填充ListView.

于 2013-08-08T08:30:07.313 回答