Update to My Last Post.
I am trying to get Endless RecyclerView with progress bar showing at bottom when you are loading data from web service. But faced different problems.
May be some one needs this.
My StackOverflow answer. Plesae upvote my answer. if it is helpful in your project.
http://stackoverflow.com/questions/31000964/how-to-implement-setonscrolllistener-in-recyclerview/31178493#31178493
I want to show complete example on this.
Step: 1
======
Create a new Interface
1 | public interface OnLoadMoreListener { |
Step: 2
======
Create a new Model Object Name Student.java
1 | package com.pratap.endlessrecyclerview; |
Step: 3
======
Create a new Activity with Recyclerview in the Xml Layout.
1 | package com.pratap.endlessrecyclerview; |
activity_main.xml
1 | <?xml version="1.0" encoding="utf-8"?> |
Create a row for recyclerview
list_row.xml
1 | <?xml version="1.0" encoding="utf-8"?> |
create a progress bar to show at the bottom.
progressbar_item.xml
1 | <?xml version="1.0" encoding="utf-8"?> |
Step: 4
======
Create an Adapter Class for RecyclerView
1 | package com.pratap.endlessrecyclerview; |
Source Code Link
Sample Apk Link
ScreenShots
=========

Sample Demo
==========




