如何在android中向上更新列表项?

发布于 2024-11-06 03:42:41 字数 219 浏览 0 评论 0原文

我有一个列表视图,当用户单击由自动完成文本视图提供的单词建议时,它将不断添加其项目...

正如我们所知,列表视图的列表项目将添加到另一个项目的底部,这将使最后一项成为最底部的一项。

我想要做的是使列表项向上添加,以便最后添加的项目将成为我的活动布局上所有项目的第一个或最顶部,第一个添加的项目成为所有项目的最底部。 ..

我希望它不会那么难弄清楚...

谢谢!

i have a list view that will keep adding its items when the user clicks the word suggestion, provided by an autocompletetextview....

as we know, the list items of a listview will be added at the bottom of the other item, this will make the last item become the most bottom of all.

what i want to do is to make the list items added upward, so that the last added item will be the first or the most top of all items on my activity layout, and the first added item become the most bottom of all items....

I hope it won't be so difficult to figure out...

Thanks!

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

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

发布评论

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

评论(1

歌入人心 2024-11-13 03:42:41

解决方案可能是简单地扩展 ArrayAdapter (假设您还没有这样做)并实现(覆盖) getView()、getCount() 等。您覆盖的 getView() 方法然后可以根据您的数据数组生成单独的视图像平常一样的项目,除了它会以相反的顺序从数组中获取项目。

A solution could be to simply extend ArrayAdapter (assuming you're not doing so already) and implement (override) getView(), getCount(), etc. Your overridden getView() method could then generate the individual views based upon your data array of items as usual, except that it would take items from the array in reverse order.

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