I am currently working on an Android application. I have a RecyclerView that I am populating with making calls to a REST API. The API is paginated, so I have managed to load the data progressively. I'm adding data when the user scroll until reaching the bottom of the page. Currently, I have fixed a progressive bar at the bottom of my main layout, below the RecyclerView. (I did this thanks to this post Adding progressbar at the end of recyclerview) This is working but the spinner renders on the text and I would like to avoid that. Is it a way to fit the progressive bar at the bottom of the RecyclerView, as an item and make it disappear when new data are collected ?
Thanks.