Created
January 3, 2011 03:58
example of how to call an intent for the WiiScale application
This file contains 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
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