Skip to content

Instantly share code, notes, and snippets.

@Reacoder
Created June 10, 2014 09:56
Show Gist options
  • Save Reacoder/7f020f71dc8de3881499 to your computer and use it in GitHub Desktop.
Save Reacoder/7f020f71dc8de3881499 to your computer and use it in GitHub Desktop.
Check intent .
public static boolean isAvailable(Context ctx, Intent intent) {
final PackageManager mgr = ctx.getPackageManager();
List<ResolveInfo> list =
mgr.queryIntentActivities(intent,
PackageManager.MATCH_DEFAULT_ONLY);
return list.size() > 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment