you can add footer before installing adapter with
listView.addFooterView(yourFooterView, null, true);
* Please note that the parameters should match your purpose.
OnScrollListener onScroll :
public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount){
int lastItem = firstVisibleItem + visibleItemCount;
if(lastItem == totalItemCoun){
}
}
, , , . , ,
lv.removeFooterView(yourFooterView);
,