Android ListView: get data index of visible item

前端 未结 3 971
隐瞒了意图╮
隐瞒了意图╮ 2020-11-30 01:37

I have an Android ListView created with a SimpleAdapter that has more items in it than fit in the screen. After the list has been scrolled, I need

3条回答
  •  抹茶落季
    2020-11-30 02:36

    It's very easy. Just use ListView.getFirstVisiblePosition() + indexYouWant. For instance, to get the position in the adapter of the 2nd child displayed in the ListView, just use getFirstVisiblePosition() + 1.

    No need for all the scary stuff shown in the reply above :)

提交回复
热议问题