将SQL结果分配给Listview

时间:2011-06-10 19:14:51

标签: android android-listview

我正在尝试构建一个格式为

的列表视图

{PlayerAname} vs {PlayerBname}

{PlayerAScore} - {PlayerBScore}


所以这是一个更复杂的(至少对我而言)listview,因为它将需要在其中设置4个属性......

我已经找了一些教程或示例,但还没找到我想要的东西。我需要知道如何设置属性以及如何构建单个列表视图项的布局

提前感谢。

1 个答案:

答案 0 :(得分:1)

您想使用SimpleCursorAdapter。 docs for ListActivity显示如何使用SimpleCursorAdapter将SQLite结果集绑定到列表视图,包括如何将每列定向到行的特定字段。该示例使用库存android.R.layout.two_line_list_item行布局,但您可以根据需要使用自己的行布置数据。