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 marke开发者_开发知识库t?
from using intents to launch market app
use market://details?id=<packagename>
instead of the http://market.android.com/...
URL
精彩评论