如何获取ListView的页脚视图(或最后一项)的位置

时间:2012-10-07 18:37:19

标签: android android-listview

我需要获取ListView

的FooterView(或列出列表中的最后一项)的位置

我试过getListView().getCount(),但没有帮助。

有人可以帮忙吗?

提前致谢!

1 个答案:

答案 0 :(得分:3)

你的问题有点模糊,但如果你有一个页脚,这将得到它的索引:

int position = getListView().getCount() - 1;