listView.setOnScrollListener(new OnScrollListener() {
@Override
public void onScrollStateChanged(AbsListView view, int scrollState) {
switch (scrollState) {
case OnScrollListener.SCROLL_STATE_IDLE:
Log.i("", "here scrolling is finished");
break;
case OnScrollListener.SCROLL_STATE_TOUCH_SCROLL:
Log.i("", "here scrolling is finished");
case OnScrollListener.SCROLL_STATE_FLING:
Log.i("", "its scrolling....");
break;
default:
break;
}
}
Run Code Online (Sandbox Code Playgroud)
祝好运...