Does the recycler view have any benefits if paging (pagination) is being used?
Recycler View is better than ScrollView especially when there is a lot of data to show, as ScrollView needs to load it all at once, while RecyclerView loads it a little at a time
1 Like
Can recycler view scroll both ways horizontal and vertical like ScrollView?
ScrollView should be used if horizontal scroll is desired.
1 Like
Thanks Mevi, will continue to use ScrollView
Thank you very much!