Your ListView can implement onScrollListener , where you can override its onScroll method. The method receives the following arguments:
public void onScroll (AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) {}
Perhaps you can start with this.
source share