当前位置: 代码迷 >> Android >> Android跳转到应用下载平台,给目前APP评分
  详细解决方案

Android跳转到应用下载平台,给目前APP评分

热度:28   发布时间:2016-04-28 00:07:20.0
Android跳转到应用下载平台,给当前APP评分

目前好多APP都添加了给评分评价等功能,点击后都会跳转到手机默写助手当前APP下载界面,实现过程如下:

try {    Uri uri = Uri.parse("market://details?id="      + context.getPackageName());//需要评分的APP包名    Intent intent5 = new Intent(Intent.ACTION_VIEW, uri);    intent5.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);    startActivity(intent5);   } catch (Exception e) {    // TODO Auto-generated catch block    Toast.makeText(getActivity(), R.string.notappstore, 0).show();   }



版权声明:本文为博主原创文章,未经博主允许不得转载。

  相关解决方案