目前好多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(); }
版权声明:本文为博主原创文章,未经博主允许不得转载。
原文地址:http://blog.csdn.net/onceing/article/details/46819035