I have searched the numerous questions that look like this one, but haven\'t found my answer in any of them.
I have an activity that has 3 tabs accessible through th
The fastest solution working for me:
@Override public void onPause() { super.onPause(); if (isRemoving() && fragmentView != null) { ((ViewGroup) fragmentView).removeAllViews(); } }