Skip to content

Instantly share code, notes, and snippets.

@broschb
Created January 3, 2011 03:58
example of how to call an intent for the WiiScale application
Uri uri = Uri.parse("weigh://broschb.wiiscale?unit=lbs");
if (isIntentAvailable(this, "com.broschb.action.WEIGH",uri))
startActivityForResult(new Intent("com.broschb.action.WEIGH",uri),WEIGHT_REQUEST);
else {
// direct to market
String APP_MARKET_URL = "market://details?id=com.broschb.wiiscale";
Intent intent = new Intent( Intent.ACTION_VIEW,
Uri.parse(APP_MARKET_URL));
startActivity(intent);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment