-
Notifications
You must be signed in to change notification settings - Fork 184
Quick start with Load More Indicator
Vitaly Vivchar edited this page Nov 5, 2017
·
6 revisions
To add the LoadMore support:
...
mRecyclerViewAdapter.registerRenderer(new LoadMoreViewRenderer(R.layout.your_load_more_layout, this));
...
for example: https://stackoverflow.com/a/29893272/4894238
mRecyclerView.addOnScrollListener(new EndlessScrollListener() {
@Override
public void onLoadMore(final int page, final int totalItemsCount) {
mRecyclerViewAdapter.showLoadMore();
//send request to a server
}
});
The Load More Indicator will be hidden automatically
...
public void updateList(List<ItemModel> list) {
mRecyclerViewAdapter.setItems(list);
}
...
If you need you can manually hide the Load More Indicator:
...
mRecyclerViewAdapter.hideLoadMore();
...