I\'m getting this warning as the first line from my app in logcat, and I have no idea what it refers to and how I should go about fixing it. Google doesn\'t offer much info
In my case at least happens because The fragment tried to update the view (or something like this) when a different activity was already running so just
@Override
public void onStop() {
super.onStop();
getActivity().finish();
}