检查 SQLITE 中的上一个和下一个条目
我有一个使用 sqlite 数据库的 Android 应用程序。我的应用程序有一个下一个和上一个按钮来查看数据库中的条目。我需要检查下一个或上一个条目是否存在,这样如果不存在,我可以禁用该按钮。
I have an android application that uses a sqlite database. My app has a next and previous button to view entries in the database. I need to check whether or not a next or previous entry exists that way i can disable the button if one does not exist.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
运行查询以获取表中每条记录的 ID 并将其缓存。然后您就知道是否有下一个或上一个条目。单击该按钮,您的应用程序将根据缓存的数据进行主键查找。
Run a query to get the IDs of each record in the table and cache this. Then you know if there are next or previous entries. Click the button, and your app would do a primary key lookup based on the cached data.
尝试这样的事情:
Try something like this: