I want to use multiple RecyclerViews on the same page layout.
I need this list:
Method 1:
<ScrollView>
<ViewPager></ViewPager>
<RecyclerView></RecyclerView>
<RecyclerView></RecyclerView>
<RecyclerView></RecyclerView>
<RecyclerView></RecyclerView>
<RecyclerView></RecyclerView>
<RecyclerView></RecyclerView>
</ScrollView>
Method 2:
<Relativelayout>
<RecyclerView>
</RecyclerView>
</Relativelayout>
To do this, I found two ways:
- one RecyclerView -> use
ItemViewType - Add all recycleview to one
ScrollView
Which method is correct?
Each of these methods has problems, and I could not find a way.
Questions:
- using method
<ScrollView>: clear all images from the screen before scrolling down. (but scrolling is fast and smooth). - using one recycleview (the presentation type of several elements) is very nested, and scrolling is not smooth and fast and inactive.
What does the list design look like in GooglePlay apps? (nested and seamlessly)