John Stack
John Stack

Reputation: 41

Android Market Link shows two options

I have the following working code:

startActivity(
    new Intent(Intent.ACTION_VIEW,
        Uri.parse("http://market.android.com/details?id=me.cexi.accuapp")));

When the user clicks on the Action Button, they get the Complete action using dialog with the following:

Browser
Market

How do I limit the option to just the market?

Upvotes: 4

Views: 234

Answers (1)

typo.pl
typo.pl

Reputation: 8942

from using intents to launch market app

use market://details?id=<packagename> instead of the http://market.android.com/... URL

Upvotes: 5

Related Questions