DEV Community

Shubham kumar tiwari
Shubham kumar tiwari

Posted on

Android Studio

Never add a Paginated RecyclerView or ListView to a ScrollView. Doing so results in poor user interface performance and a poor user experience.

Use Linear Layout with scrolling behaviour or if possible RecyclerView with multiple view types.
Using a Paginated RecyclerView in a scrollview will trigger your Paging Source load without you scrolling leading to lags and performance issues

Top comments (0)