Android Market 链接显示两个选项
我有以下工作代码:
startActivity(
new Intent(Intent.ACTION_VIEW,
Uri.parse("http://market.android.com/details?id=me.cexi.accuapp")));
当用户单击操作按钮时,他们会使用带有以下内容的对话框获得完整操作:
Browser
Market
如何将选项限制为仅市场?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自使用意图启动市场应用
使用
market:// details?id=
而不是http://market.android.com/...
URLfrom using intents to launch market app
use
market://details?id=<packagename>
instead of thehttp://market.android.com/...
URL