如何调用google play star rating对话框?

时间:2013-10-30 07:27:57

标签: android google-play web-deployment

我计划在操作栏中插入一个选项,例如评价我们,并希望调用google play star rating dialog.i知道我们可以使用此概念调用我们的应用页面。我搜索了很多,但没有找到。任何帮助

Uri uriUrl = Uri.parse(<packageName>);
        Intent launchBrowser = new Intent(Intent.ACTION_VIEW, uriUrl);
        startActivity(launchBrowser);

2 个答案:

答案 0 :(得分:0)

查看this段代码。最终你可以使用以下意图:

context.startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + APP_PACKAGE_NAME)));

答案 1 :(得分:0)

您可以使用以下代码:

String appPackage = mContext.getPackageName();
Intent intent = new Intent(Intent.ACTION_VIEW,  Uri.parse("https://play.google.com/store/apps/details?id=" + appPackage));
mContext.startActivity(intent);

或者,对于完整而简单的解决方案,您只需使用gradle添加此库:https://github.com/fernandodev/easy-rating-dialog

compile 'com.github.fernandodev.easyratingdialog:easyratingdialog:+'