Try with OnScrollListener Just add the items to your ListView in your
public void onScroll(AbsListView view,
int firstVisible, int visibleCount, int totalCount) {
// Add the items
}
}
And, setting your adapter.notifyDataSetChanged() will display the added items in your ListView Here i give you some example that how to integrate the onScrollListener with your ListView
Android Endless List
Endless Scrolling Listview
Endless ListView