gpt4 book ai didi

android - 一次读取所有行

转载 作者:行者123 更新时间:2023-11-29 00:45:51 24 4
gpt4 key购买 nike

我正在尝试读取 SQLite 表中的所有行,并在 ListView 中同时显示它们。这是我逐行阅读它们的方式:

//---get all titles---
db.open();
Cursor c = db.getAllTitles();
String text = "";
if (c.moveToFirst()){
do {
DisplayTitle(c, text);
} while (c.moveToNext());
}
db.close();

public void DisplayTitle(Cursor c, String text){
ListView.setText("id: " + c.getString(0) + "\n" + "ISBN: " + c.getString(1)
+ "\n" + "TITLE: " + c.getString(2) + "\n" + "PUBLISHER: " + c.getString(3));
}

关于如何实现这一点有什么建议吗?

最佳答案

您必须使用自定义 CursorAdapter。查看本教程:

http://thinkandroid.wordpress.com/2010/01/11/custom-cursoradapters/

关于android - 一次读取所有行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6411643/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com