Skip to content

Instantly share code, notes, and snippets.

@kennyk
Created April 21, 2016 10:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kennyk/2061ef8382b323134397d44805ba04e6 to your computer and use it in GitHub Desktop.
Save kennyk/2061ef8382b323134397d44805ba04e6 to your computer and use it in GitHub Desktop.
Clear Intent flag
public static void unsetFlag(Intent intent, int flag) {
intent.setFlags(intent.getFlags() & (~flag));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment