I've seen a few other threads on this subject, but none that addresses
my need which is to not only find the app in the market via the market
uri, but display it as if the user had navigated to it.

The closest anyone has gotten to this answer is to show how to bring
up the Android Market app and browse for the app you want which shows
the single result in a list that the user must still select to get to
the screen I want to display.

Here's my existing code that does exactly that:

private static final String MY_MARKET_APP = "com.some.silly.name";

Intent marketLaunch = new Intent(Intent.ACTION_VIEW);
marketLaunch.setData(Uri.parse("market://search?q=pname:" +
MY_MARKET_APP));
startActivity(marketLaunch);

I don't want to have to force the user to select this single item from
the list - just bypass that and bring up the next screen.

Has anyone been able to successfully do this?

Regards,

- Mike
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to