2

Is there any way to determine that Android (vertical) scroll-view is scrolled upward or downward. I actually have a scenario to implement it.

Husnain Iqbal
  • 466
  • 6
  • 16

1 Answers1

0

The onScrollChanged event will fire, and you can compare the previous and current scroll positions. See here: http://developer.android.com/reference/android/view/View.html#onScrollChanged%28int,%20int,%20int,%20int%29

a_schimpf
  • 745
  • 1
  • 5
  • 16