In my application, users can send the badge / gift to other users. I want to show a DialogFragment popup that includes swapping the available icons.
For example, I have a total of 15 icons to display. I want to show 6 icons per page, which means that I have to have 3 "pages" to scroll horizontally.

I tried using FragmentPagerAdapter and RecyclerView with GridLayout for icons. But it does not work as if I want to.
How can this be implemented using the PagerAdapter without any fragments?
source share