Specifically, I\'m trying to figure out if there is an application to handle the market intent, but I\'d like a general case solution.
I know if you do something lik
Use PackageManager and queryIntentActivities() or resolveActivity(). The former will return a List of things that match an Intent to be used with startActivity(). The latter will return null for no matches or an Intent which is the "best match" (which could be the chooser activity if there is more than one match).