适用于大型数据集的 Android ListView

发布于 2024-12-10 21:25:08 字数 1431 浏览 1 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忆沫 2024-12-17 21:25:08

一些想法:

  1. 一次显示一页数据。向下滚动时,加载更多数据。

  2. 滚动 7000 条记录才能到达末尾将需要很长时间。通过搜索表单访问您的数据。将结果限制为 100 条记录。

  3. 如果数据已排序,请将项目分组在一起并提供索引。例如,按字母顺序排列的列表可以分为 26 个子集。第一页显示字母表,您必须单击字母才能转到子集。

A few ideas:

  1. Display data one page at a time. When you scroll down, load more data.

  2. Scrolling through 7000 records to go to the end will take forever. Access your data via a search form. Limit results to 100 records.

  3. If the data is sorted, group items together and provide an index. For example, alphabetical lists can be split into 26 subsets. The first page shows the alphabet, and you have to click on a letter to go to a subset.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文