onScroll gets called when I set listView.onScrollListener(this), but without any touch
Just a reminder, according to the javadoc of MotionEvent.ACTION_SCROLL : This action is always delivered to the window or view under the pointer, which may not be the window or view currently touched. This action is not a touch event so it is delivered to onGenericMotionEvent(MotionEvent) rather than onTouchEvent(MotionEvent). Hence, motionEvent.getAction() will never gets the … Read more