LoadMore RecyclerView with progress bar showing at bottom

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 2 3 public interface OnLoadMoreListener { void onLoadMore (); } Step: 2 ====== Create a new Model Object Name Student.java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 package com . pratap . endlessrecyclerview ; import java.io.Serializable ; public class Student implements Serializable { private static final long serialVersionUID = 1L ; private String name ; private String emailId ; public Student () { ...