I have a RecyclerView list of CardViews with an Observer in the MainActivity and a ListAdapter to load the CardViews for the UI. I also set up a ViewModel, Repository, DAO and Room database to store the CardView data. I set up a MediatorLiveData List in a ViewModel to handle different user selections to sort and filter the full List of CardViews.
My issue is when the l...
