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.
假设我有一些数据并且它们一个一个地加载,有没有办法让适配器添加到列表视图的每个项目都来自屏幕底部,然后转到它们的原始位置?
只需使用:
list.setStackFromBottom(true);
它将使所有项目从列表底部添加。
您只想更改订单吗?然后,您应该更改适配器中的 getView() 方法,以在数据中使用镜像位置。
所以,你应该像这样使用
Type object = data.get(data.size() - position);