android 跳转进市场的实现代码
摘要:跳转进市场的代码复制代码代码如下:Intentintent=newIntent(Intent.ACTION_VIEW);2intent.se...
跳转进市场的代码
复制代码 代码如下:
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);
【android 跳转进市场的实现代码】相关文章:
★ Android读取用户号码,手机串号,SIM卡序列号的实现代码
★ Android 按后退键退出Android程序的实现方法
★ android bitmap compress(图片压缩)代码