From the Fragment open the dialog fragment like below
1 2 3 |
YourDialogFragment dialogfragment = YourDialogFragment.newInstance(); addmedia.setTargetFragment(this,10); addmedia.show(getFragmentManager(), YOURTAG); |
then to recive the callback from the dialog fragment in your host fragment use this code in your dialog fragment
1 2 3 4 5 6 7 8 9 |
@Override public void onAttach(Context context) { super.onAttach(context); try { itemClick = (onItemClick) getTargetFragment(); } catch (ClassCastException e) { throw new ClassCastException(context.toString() + " must implement OnArticleSelectedListener"); } } |
Then you will receive in your fragment.