Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have link of my other apps in my latest app, and I open them in that way.

Uri uri = Uri.parse("url");
Intent intent = new Intent (Intent.ACTION_VIEW, uri); 
startActivity(intent);

this codes opens the browser version of google play store.

When trying to open from my phone, the phone prompts if I want to use a browser or google play and if I choose the second one it opens the mobile version of google play store.

Can you tell me how can this happen at once? I mean not ask me but directly open the mobile version of google play, the one that I see while open it directly from phone.

share|improve this question

1 Answer

up vote 72 down vote accepted

You'll want to use the specified market protocol:

final String appName = "com.example";
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id="+appName)));

Keep in mind, this will crash on any device that does not have the Market installed (the emulator, for example). Hence, I would suggest something like:

try {
    startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id="+appName)));
} catch (android.content.ActivityNotFoundException anfe) {
    startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://play.google.com/store/apps/details?id="+appName)));
}

You can find more on Market Intents here: link.

share|improve this answer
Opening the following in the browser does not open Google Play: market://details?id=pandora – Igor Ganapolsky Jan 13 at 19:04
The ID is the package name, not the app name. Try market://details?id=com.PandoraTV (assuming this is the app you want). – Eric Jan 13 at 19:32
Try opening any link that starts with market:// in Chrome for Android. You will see that it only performs a search result, it doesn't open the Google Play store. It is irrelevant if the Pandora package name is correct here, I can give you a hundred correct package names and it won't change the issue. – Igor Ganapolsky Jan 14 at 20:26
3  
This answer is about using the market:// prefix from your own app, not from a website via the browser. I can attest to its functionality (on versions 2.3, 3.x, 4.0, 4.1, and 4.2) and it works with the stock browser, Chrome Beta 25, and Chrome 18. – Eric Jan 14 at 20:30
1  
Yes, Chrome is an app, but that would require its makers [Google] to use this code, not the people [you] making the websites. As it stands, this code is to help people who are structuring links specifically from their apps. – Eric Jan 15 at 17:55
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.