Binding onScrolling listener to the android ListView

前端 未结 3 1632
伪装坚强ぢ
伪装坚强ぢ 2020-12-30 10:36

just wanted to ask is there a possibility to bind some listener to the ListView scroll event.

What I would like to achieve is that once ListView have been scrolled t

3条回答
  •  悲&欢浪女
    2020-12-30 10:49

    used

    if (++visibleItemCount > totalItemCount)

    instead

    if (++firstVisibleItem + visibleItemCount > totalItemCount)

提交回复
热议问题