Skip to content

Instantly share code, notes, and snippets.

@Syzygy2048
Created January 28, 2016 14:41
Show Gist options
  • Save Syzygy2048/1593d96675ba050e6d12 to your computer and use it in GitHub Desktop.
Save Syzygy2048/1593d96675ba050e6d12 to your computer and use it in GitHub Desktop.
protected boolean isAvailable() {
if (getActivity() == null) return false;
if (getActivity().isFinishing()) return false;
if (!isAdded()) return false;
if (isDetached()) return false;
if (!isVisible()) return false;
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment