EDIT:
I have a DialogFragment where the link inside the parent Activity is NULL after changing the device orientation. How to fix it?
Creating a fragment:
MyFragment myFragment = MyFragment.newInstance(title); myFragment.show(getFragmentManager(), tag);
After changing orientation:
MyFragment myFragment = (MyFragment)getFragmentManager().findFragmentByTag(tag); myFragment.dismiss();
source share