Detecting scrolling to the end of the listview

jdiperla

Member
Licensed User
Longtime User
Is there a way to detect that a user scrolled to the end of the listview so that then the listview can add more items when it reaches the end? I am trying to do this so that I can add items progressively. Thanks in advance.
 

JesseW

Active Member
Licensed User
Longtime User
personally, if I were going to do something like that, I'd use a scrollview so I can see and track the vertical position. there are examples on how to build a listview like control from a scrollview. good luck
 
Upvote 0

jdiperla

Member
Licensed User
Longtime User
I do use scrollview in my app for other things. However, I believe the code concept would be the same for either the listview or scrollview and I much rather do this for listview if its possible as much of my code is already based on and works around the listview control.
 
Upvote 0
Top