Search code examples
androidscrollviewdirection

How can I determine the direction of a vertical ScrollView?


How can I determine the direction of a vertical ScrollView? I need to hide and display another linear layout accoding to scrollview scroll


Solution

  • You can use the onScrollChanged(int l, int t, int oldl, int oldt) method for that. As there isn't a setter for a listener, but just that method, you will have to create your own ScrollView class and override that method and do your thing in your implementation.