Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am building many apps for Android and wish to have a menu button in the apps that basically opens a list of my other apps in the Android Market.

Is there a way to create an intent and have the Android market pop up with a search (of my company) in the market so users can buy other apps?

ian

share|improve this question

4 Answers

up vote 14 down vote accepted

Yes, there is a documented Intent syntax for that (http://market.android.com/search?q=pub:<Developer Name> or market://search?q=pub:<Developer Name>).

share|improve this answer
1  
is there an updated link for google play or is it still "market" – gregm Apr 12 '12 at 15:42
@gregm: Looks like it is still market: developer.android.com/guide/publishing/… – CommonsWare Apr 12 '12 at 16:00
@CommonsWare Do you know if this still works? I have been trying on a Galaxy S 3 with Play Store 3.7.15 and it doesn't work if I include "pub:" but works fine if I just put the publisher name as the query. I don't like doing it that way though since other stuff could essentially turn up. – Hamid Jul 26 '12 at 16:18

Even better to use "market://details" instead of "market://search":

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://details?id=com.android.example"));
startActivity(intent);

Then it opens directly the details page of the app. With search it shows a single search result and the user has to do an additional click to get to the detail page.

share|improve this answer

The intent action would be view, and uri the market url/uri.

Like this:

startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://search?q=pub:<developer name>") ) );
share|improve this answer

On my real devices Sony Xperia Pro and PocketBook tablet, even when you put a link to play web store e.g. https://play.google.com/store/apps/details?id=com.estrongs.android.pop It will ask if you want to open it in the default browser or in the Play market. If you select Play market - application is shown as expected. Did not test it with intent, tested with Autolink from TextView.

share|improve this answer

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.