日志影响列表视图?

发布于 2025-01-06 13:01:02 字数 453 浏览 0 评论 0原文

简单的问题,我有一个通过 AsyncTask 从数据库填充的列表视图。我使用 if 语句来决定从哪个数据库方法获取游标。 db 方法在 asynctask 之外工作得很好,但仅当 Log 代码存在时才在 asynctask 内部工作。

if (i == 1) {
    c = cdb.getFive();
    Log.d("TAG5", DatabaseUtils.dumpCursorToString(c));
}

有效,但

if (i == 1) {
    c = cdb.getFive();
    //Log.d("TAG5", DatabaseUtils.dumpCursorToString(c));
}

不起作用。有什么想法吗?

编辑 - 该代码位于 doInBackground()

Quick question, I have a listview that's populated from a database through an AsyncTask. I use an if statement to decide which db method to get a cursor from. The db methods work great outside an asynctask, but only works inside the asynctask when the Log code is there.

if (i == 1) {
    c = cdb.getFive();
    Log.d("TAG5", DatabaseUtils.dumpCursorToString(c));
}

works, but

if (i == 1) {
    c = cdb.getFive();
    //Log.d("TAG5", DatabaseUtils.dumpCursorToString(c));
}

doesn't work. Any ideas why?

EDIT - That code is in doInBackground()

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枯叶蝶 2025-01-13 13:01:02

在从 Cursor 读取任何数据之前,您应该调用 c.moveToFirst() 方法。

实际上,方法DatabaseUtils.dumpCursorToString() 调用方法moveToPosition()。这就是为什么您的代码可以使用日志记录,而没有它就无法工作。

You should call c.moveToFirst() method before reading any data from Cursor.

Actually, method DatabaseUtils.dumpCursorToString() calls method moveToPosition(). What's why your code is working with logging and doesn't working without it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文