Android:在列表视图中实现收藏夹
您好,
我的应用程序是关于位置目录的,用户可以在其中查看靠近其位置的位置列表并查看该位置的详细信息。
我想为列表视图和详细信息页面视图中的所有项目添加“添加到我的收藏夹”功能。
最好的方法是什么?我正在考虑使用 CheckBox 来完成此操作,但无法理解如何在列表视图适配器中实现。
我正在考虑以下收藏夹表结构: _id - 整数主键 content_identifier - 该地点的唯一标识符(文本)
有人可以帮忙吗?
问候, 萨潘
HI,
My app is about a directory of places where a user can see list of places close to his location and view details of that place.
I want to "add to my favorites" functionality for all the items in list view and detail page view.
What is the best way to do this? I was thinking to do it using CheckBox but was not able to understand how to implement in listview adapter.
I am thinking of the following table straucture for favorites:
_id - integer primary key
content_identifier - unique identifier for the place (text)
Can someone please help?
Regards,
Sapan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建自定义列表视图(查看如何创建自定义列表视图并向其添加侦听器)
并添加一个复选框或图像,向列表项的图像添加一个侦听器(单击侦听器),每当按下图像或复选框时,添加一个数据库条目(收藏夹表等)
Create a custom listview(check how to create a custom listview and add listeners to it)
and add a checkbox or an image , add a listener(click listener) to the image of the list items, whenever image or checkbox is pressed , add a database entry ( favorites table or so)