码迷,mamicode.com
首页 > 移动开发 > 详细

android中调用App市场对自身App评分

时间:2015-04-07 17:12:45      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:

苹果的app评价很容易,直接请求AppStore的一个链接就好了,android市场这么多,请求一个链接肯定不行。之前一直以为很麻烦,也没有仔细研究,今天竟然发现原来很简单。上代码:

Uri uri = Uri.parse("market://details?id=" + context.getPackageName());
Intent goToMarket = new Intent(Intent.ACTION_VIEW, uri);
try {
    startActivity(goToMarket);
} catch (ActivityNotFoundException e) {
    Toast.makeText(context, "Couldn‘t launch the market !", Toast.LENGTH_SHORT).show();
}

 

android中调用App市场对自身App评分

标签:

原文地址:http://www.cnblogs.com/liyuzhao/p/4398729.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!