gpt4 book ai didi

java - 从 Android 中的 SQLite 数据库填充 ListView

转载 作者:行者123 更新时间:2023-11-29 06:22:25 25 4
gpt4 key购买 nike

我正在尝试使用从另一个类中保存的 SQLite 数据库中获取的数据填充单独类中的 ListView。最简单的方法是什么?

谢谢

最佳答案

返回一个游标,例如:getList() 从您的其他类到当前的 ListView 类。

objItem = new Contacts(this);

this.cur = objItem.getList();
this.startManagingCursor(this.cur);

ListAdapter adapter = new SimpleCursorAdapter(this, android.R.layout.simple_list_item_1, cur,
new String[] { ContactsContract.Contacts.DISPLAY_NAME}, new int[] { android.R.id.text1});

setListAdapter(adapter);

在类中你有一个返回 Cursor 的方法

public Cursor getList() {
// Get the base URI for the People table in the Contacts content
// provider.
Uri contacts = ContactsContract.Contacts.CONTENT_URI;
// Make the query.
ContentResolver cr = ctx.getContentResolver();
// Form an array specifying which columns to return.
String[] projection = new String[] { ContactsContract.Contacts._ID,
ContactsContract.Contacts.DISPLAY_NAME };

Cursor managedCursor = cr.query(contacts, projection, null, null,
ContactsContract.Contacts.DISPLAY_NAME
+ " COLLATE LOCALIZED ASC");
return managedCursor;
}

关于java - 从 Android 中的 SQLite 数据库填充 ListView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2515375/

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