In my code now, I have a DetailActivity, which simply calls a ListAdapter class to populate a ListView.
Within the ListAdapter class, I am inflating some custom views, some of which contain Buttons.
Back from within my DetailActivity, I would like to be able to access these buttons to enable/disable them depending on certain user actions. Is there a way to do this?
I guess the larger question is: from an Activity, how can I grab a reference to any element (buttons, imageviews, textviews,etc) that are created from an Adapter?
Thank you!