如何从下到上填充列表视图

时间:2015-03-25 20:13:35

标签: android android-layout listview bottom-up

现在我有一个像

一样填充的列表视图
[top]
1
2
3
4
[bottom]

我希望它像

一样填充
[top]
4
3
2
1
[bottom]

android:stackFromBottom="true"没有给我我想要的东西

2 个答案:

答案 0 :(得分:1)

覆盖getItem,而不是在position返回数据集条目,返回dataset.size() - position - 1处的条目。 E.g

假设数据集由String组成,并且您将其存储在名为ArrayList<String>()的{​​{1}}

mDataSet

答案 1 :(得分:0)

参考: Is it possible to make a ListView populate from the bottom?

  

仅当ListView的宽度和高度设置为时才有效   match_parent或fill_parent。