首页 > 系统 > Android > 正文

android 跳转进市场的实现代码

2020-04-11 12:11:26
字体:
来源:转载
供稿:网友
跳转进市场的代码
复制代码 代码如下:

Intent
 intent = new Intent(Intent.ACTION_VIEW);
2 intent.setData(Uri.parse("market://details?id=" +
 getPackageName()));
3 startActivity(intent);

跳转进市场搜索的代码
复制代码 代码如下:

Intent
 intent = new Intent(Intent.ACTION_VIEW);
2 intent.setData(Uri.parse("market://search?q=pub:Your
 Publisher Name"));
3 startActivity(intent);

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表