I’m trying to do something after scrolling stopped.So, I tried using OnScrollListener#onScrollStateChanged(SCROLL_STATE_IDLE) to detect when the scrolling stopped(either TOUCH_SCROLL or FLING)(at 1.5 it’s runs as i expect).
But when it runs on 2.0, onScrollStateChanged can’t received the event after releasing the finger.Is there any callback or anyway to detect that event?
I’m trying to do something after scrolling stopped.So, I tried using OnScrollListener#onScrollStateChanged(SCROLL_STATE_IDLE) to detect
Share
Try using the setOnScrollListener and implement the onScrollStateChanged with scrollState == 0 … do what you need to do…