I'm trying to set a progress bar in the actionbar
and in a fragment, there is a asynctask to load json data to show in a webview
when the onPostExecute is called, I use this to disable the progress bar
getActivity().setProgressBarIndeterminateVisibility(false);
but if the asynctank haven't finish, and I leave the fragment
there would have a nullpointer exception.
Is there any solution?