> Uri uri = Uri.parse("market://search?q=pname:your.package.name");
> Intent intent = new Intent(Intent.ACTION_VIEW, uri);
> intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
> startActivity(intent);

If you go this way, don't forget to check there is a market intent
available. I had a lot of FC's due to some device not having a market
to handle such a link.

Yahel

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

Reply via email to