I have a NestedScrollView and I want to see weather it is scrolling at the moment.
nestedScrollView.setOnScrollChangeListener(new NestedScrollView.OnScrollChangeListener() {
@Override
public void onScrollChange(NestedScrollView v, int scrollX, int scrollY, int oldScrollX, int oldScrollY) {}
});
I've looked online and couldn't find a solution.