Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Install the Skype client through the market: URI scheme.
- * /
- public void goToMarket(Context myContext) {
- Uri marketUri = Uri.parse("market://details?id=com.skype.raider");
- Intent myIntent = new Intent(Intent.ACTION_VIEW, marketUri);
- myIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
- myContext.startActivity(myIntent);
- return;
- }
Advertisement
Add Comment
Please, Sign In to add comment