You can absolutely do that.
- Load all the data (through a web service call or by any other means).
- When data are retrieved, set them to the
RecyclerView‘s adapter and callnotifyDatasetChanged()). - Use the
RecyclerViewnormally (i.e. binding data objects to the views inonBindViewHolder().
This way you will get what you want (having all data and not needing to load more as the user scrolls) and the benefits of the RecyclerView, that creates as many views as needed.
solved is it possible that when recyclerview load items just load one time and dont reload scrolling?