Last active
December 17, 2015 22:39
-
-
Save jfsurban/5683234 to your computer and use it in GitHub Desktop.
Indicates whether the specified action can be used as an intent - #android http://www.curious-creature.org/2008/12/15/android-can-i-use-this-intent/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Indicates whether the specified action can be used as an intent. This | |
* method queries the package manager for installed packages that can | |
* respond to an intent with the specified action. If no suitable package is | |
* found, this method returns false. | |
* | |
* @param context The application's environment. | |
* @param action The Intent action to check for availability. | |
* | |
* @return True if an Intent with the specified action can be sent and | |
* responded to, false otherwise. | |
*/ | |
public static boolean isIntentAvailable(Context context, String action) { | |
final PackageManager packageManager = context.getPackageManager(); | |
final Intent intent = new Intent(action); | |
List list = | |
packageManager.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