I am using the following: - I have a DialogFragment, the view contains a listview and a button - the listview contains an imageview, a textview, and a checkbox - I have a Custom adapter for the listview
What is need is the values of the checkboxes after I press the button in my DialogFragment view. How do I do that? How can I access the values of the checboxes, which are only known inside my adapter (as far as I know) from outside my adapter?
Can I add a public method in my adapter, where the values of the checboxes are stored? Or is there another way?