gpt4 book ai didi

java - 自定义 CursorAdapter 绑定(bind)到 simple_list_item_checked

转载 作者:行者123 更新时间:2023-12-01 15:58:34 27 4
gpt4 key购买 nike

例如,假设我有一个包含待办事项的 SQLite 数据库,每个待办事项都有一个字符串标题和一个完成的整数。如何创建一个自定义适配器(扩展 CursorAdaper),可以将 android.R.layout.simple_list_item_checked 中的复选框绑定(bind)到已完成的整数?我已经知道我必须将整数转换为 boolean 值,我使用 true = 1 和 false = 0。

最佳答案

请重写适配器中的bindView抽象方法。

 /**
* Bind an existing view to the data pointed to by cursor
* @param view Existing view, returned earlier by newView
* @param context Interface to application's global information
* @param cursor The cursor from which to get the data. The cursor is already
* moved to the correct position.
*/
public abstract void bindView(View view, Context context, Cursor cursor);

关于java - 自定义 CursorAdapter 绑定(bind)到 simple_list_item_checked,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4486420/

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