【Android自学笔记】为Android应用程序添加Rate功能

来源:互联网 发布:人工智能 电影 在线 编辑:程序博客网 时间:2024/04/30 04:10
private void launchMarket() {Uri uri = Uri.parse("market://details?id=" + getPackageName());Intent goToMarket = new Intent(Intent.ACTION_VIEW, uri);try {startActivity(goToMarket);} catch (ActivityNotFoundException e) {Toast.makeText(this, "Could not connect the Play",Toast.LENGTH_LONG).show();}}
可以使用这个函数进入Google play中对应用程序进行评分,很简单,但是很实用
原创粉丝点击