Skip to content
Advertisement

How to display already checked checkboxes in recyclerview, on activity start-up(many to many relationship)

Each “Note” is differently “added” to “Folders” or should I say, different checked “Folders” for each “Note”.

When I check the “Folder”, go back to previous Notes activity with back button, then open the same “Note” to go to “Add to Folders Activity” and add the “Note” to Folders, it should remember that previously checked “Folder” and recheck it.

I have already implemented that functionality, inside onBindViewHolder and in FolderHolder(RecyclerView Holder).

The problem is when multiple “Folders” exist in recyclerview when I uncheck the checkbox, then scroll down, then back up, the unchecked folder rechecks itself as it was.

I understand that onBindViewHolder gets called every time on scroll and recycling views thus checked “Folder” gets rechecked on scroll.

I want to check the already before checked folders, on activity start-up, just like now, but without rechecking them on scroll.

Please can you suggest me a code to this? I would really appreciate this!

My recyclerview adapter:

JavaScript

My Activity that have the recyclerview:

JavaScript

My “Folder” Room db Entity:

JavaScript

I removed some code of course because it would make this question too lengthy.

Advertisement

Answer

I solved it finally! I moved the:

JavaScript

from onBindViewHolder to the Activity that have the recyclerview(AddToFoldersActivity) and modified it a bit to fit in:

JavaScript

The Adapter(FoldersAddToFoldersAdapter):

JavaScript

And moved the code to Activity(AddToFoldersActivity):

JavaScript

Finally the “Folder” Room db Entity(table):

JavaScript

That way the checkbox checking runs only once when Activity(AddToFoldersActivity) starts/gets created and not again and again, in each scroll, inside onBindViewHolder(). onBindViewHolder() runs on each scroll.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement