How To Dismiss A Dialog Fragment From A Recyclerview Adapter
A silly question but I am new to Android and I’ve spent a few hours looking around but can’t find the answer. I have a dialog fragment with a recyclerview in it. I want the di
Solution 1:
- Add to the adapter a constructor that receive DialogFragment and save it as a field.
When you create the Adapter do
new EvMySchedAdapter(dayList, EvMySchedDlg.this);
Inside the onClick call dialgFragment.dismiss();
Post a Comment for "How To Dismiss A Dialog Fragment From A Recyclerview Adapter"