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.
Android sdk 有一个示例记事本应用程序,该应用程序将笔记保存在数据库中。我注意到缺少的一件事是重新排序项目,有没有一种简单的方法可以添加?如何在数据库中设置排序?
这个想法是ListView不会重新排序基础数据。相反,数据以正确的顺序呈现。因此,如果您在使用 SQLite 中使用ORDER BY子句,那么您SELECT将是正确的选择。当您添加某些内容时,会刷新基础数据以刷新您的列表。
ListView
ORDER BY
SELECT