Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bouchtaoui-dev/8f0efbc2bb71800536f3 to your computer and use it in GitHub Desktop.
Save bouchtaoui-dev/8f0efbc2bb71800536f3 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