android 跳转进市场的代码 android 跳转进市场的实现代码
人气:0想了解android 跳转进市场的实现代码的相关内容吗,在本文为您仔细讲解android 跳转进市场的代码的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:android,跳转进市场,代码,下面大家一起来学习吧。
跳转进市场的代码复制代码 代码如下:
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);
加载全部内容