Android调用已安装市场平台(如Google Play商店,豌豆荚,百度手机助手,应用宝等)评论功能

来源:互联网 发布:mysql大数据优化 编辑:程序博客网 时间:2024/04/28 11:41

效果图:



代码:

Uri uri = Uri.parse("market://details?id=" + getPackageName()); //传递包名,让市场接收                Intent intent = new Intent(Intent.ACTION_VIEW, uri);                intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);                startActivity(intent);


0 0
原创粉丝点击