Recyclerview item selection with checkbox, creating a new list/recyclerview with checked items in another fragment
I have a RecyclerView showing movie categories fetched with retrofit from an api.
Based on it's preferences the user should be able to show (checkbox is checked) or hide (checkbox is unchecked) categories.
Those setting should proceed in Fragment A. After clicking on a save button (or something similar) the check-state of the items/categries should be saved (for next app starts) and the checked items should be passed in a new list that it's showed in a "new" Recyclerview in Fragment B.
I read...