My app is using RecyclerView
to load the data from Backend Endpoints API
. After connecting the API
I am getting some x amount
of data. I am successfully able to load the data in StaggeredGridView
in RecylerView
.
Now, user scrolldown
to bottom and reach at Last Position
. How can I make able to another request to fetch next x
amount of data and so on?
(Like Gmail App does. Gmail app shows a spinner and load next span of data)
I am new in Android and How can I achieve it?