Reputation: 53
I want to design a layout similar to the images where user selects one item in each step (drink,sauce...) user advances next step (and its displayed in stepper). user can also swipe(in red area) or click one of "1,2,3,4,5" pages to change page.
I searched how to do it with recyclerview but couldn't find a solution. What layout do i need to use for such case. just need to know how to achieve similar designs. I don't need code or xml for solution just an explanation will be enough.
Thanks for helping.
Upvotes: 0
Views: 79
Reputation:
You should use TabLayout
and ViewPager
. You have to add TabLayout
and ViewPager
. Than, your TabLayout
should have different TabLayout
inside of that ViewPager
.
Upvotes: 1