I have a fixed content in my text view inside a scroll view. When the user scrolls to a certain position, I would like to start an activity or trigger a Toast.<
This question is fairly old, but in case somebody drops by (like me):
Starting with API 23, Android's View has a OnScrollChangeListener and the matching setter.
The NestedScrollView from the Support library also supports setting a scroll listener even before that API level. As far as I know, NestedScrollView can be used as a replacement for the normal ScrollView without any problems.