How to create a link to the Android Market to list all applications from the developer?

I am trying to add a button in my application saying “more applications”, which opens the Android Market application, which lists all my applications. I found a document here that says the link should be marketed: // search? Q = pub :. However, it does NOT work. When searching, it does not return a result. The link to HTTP: // works, but I really want to use the market: // link.

Can anyone help me with this? Thank,

+5
source share
2 answers

I found out that the problem is in the formatting. The URL should look something like this:

String MARKET = "market://search?q=pub:\"Developer Name\""; 
+10
source
Intent goToMarket; 
goToMarket = new Intent(Intent.ACTION_VIEW, Uri.parse("market://search?q=pub:\"Developer name\"")); 
startActivity(goToMarket); 
+5

All Articles