In the Tag ListView (hosted by the _TagListActivity_) replace the _FAB_ for fetching the next results by an **endless scrolling**. Something like [`AbsListView.OnScrollListener`](https://developer.android.com/reference/android/widget/AbsListView.OnScrollListener) should be used... ### References * https://benjii.me/2010/08/endless-scrolling-listview-in-android/ * https://www.javacodegeeks.com/2013/10/android-listview-endless-adapter.html * https://stackoverflow.com/questions/31069053/how-to-implement-endless-scrolling-listview
In the Tag ListView (hosted by the TagListActivity)
replace the FAB for fetching the next results by an endless scrolling.
Something like
AbsListView.OnScrollListenershould be used...References