Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将 Checkbox 和更大的 TextView 等链接到外部数据?我应该使用 SimpleCursorAdapter 吗?或者创建我自己的适配器?它应该扩展 ArrayAdapter 还是 BaseAdapter? 我的列表项 UI:
如果您将该视图绑定到 SQLite 数据库中的数据,我会扩展 CursorAdapter。这很简单,因为您只需要重写 bindView() 和 newView()。在 newView() 中,您需要使用 LayoutInflater 来膨胀视图,在 bindView() 中,您将视图定义为对象并将数据绑定到它们!问你是否需要一些示例代码,我会从一个旧项目中挖掘一些!