I have a ViewPager with a FragmentPagerAdapter. My customer wants me to switch from ViewPager to list; a vertical list with all the fragments.
There can be a lot of fragments, so adding them all in a ScrollView is out of the question.
Can I somehow do this while still using a FragmentPagerAdapter? Adding fragments to, for example, the views in a recyclerview is not a good idea, I suppose?
What might be a good solution? I'm afraid I will have to stop using fragments for this altogether, but there is a lot of controller code in these fragments.