Looking for a similar solution. There is an application where fragments are located in the navigation drawer. Clicking on each of them opens an individual list of X with its own elements. By clicking on some of the items, it opens:
- new lists with items ( similar to recyclerView ).
- google map with markers (for each list is different).
- new lists with items that click on a google map with markers (for each list is different).
The actual questions are as follows:
- Is it worth it to implement the fragment in the fragment
- If the lists are the same (picture + text), then it is possible to implement 1 recyclerView with an adapter, which I will simply use in each fragment?
- How to put another recyclerView in one recyclerView?
- How, after selecting a category, replace the click on the recycler Maps fragment?