anjinkristou

Android go to market

Mar 10th, 2014
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.35 KB | None | 0 0
  1. /**
  2.  * Install the Skype client through the market: URI scheme.
  3.  * /
  4. public void goToMarket(Context myContext) {
  5.   Uri marketUri = Uri.parse("market://details?id=com.skype.raider");
  6.   Intent myIntent = new Intent(Intent.ACTION_VIEW, marketUri);
  7.   myIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  8.   myContext.startActivity(myIntent);
  9.  
  10.   return;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment