How to detect the scroll of ScrollView?

Inman

Well-Known Member
Licensed User
Longtime User
I want to display an imageview when the user starts scrolling to the bottom of the scrollview. I see that ScrollView has a member called ScrollPosition which returns the scroll position but since ScrollView doesn't have any events, I am not sure how I can detect when the user starts scrolling.

I can use a Timer to check the ScrollPosition every second but I am not sure if it is a good practice and how it affects the battery life.
 

gjoisa

Active Member
Licensed User
Longtime User
Auto scroll view

This is my suggestion . When ever a form height is more than screen size of a device screen , then program should run with scroll view automatically . (without adding the scroll view while designing ) . In my app's case , form displays correctly in landscape mode ; but in portrait mode 70% of the form only displays . some buttons are not visible . Is it possible in further versions ?
 
Upvote 0
Top