1

我正在尝试在我的应用程序中提供评级功能,但是当我点击rate它时说,“未找到请求的项目”。

4

1 回答 1

1

尝试使用此代码

    private void rateAppOnPlayStore() {
    Uri uri = Uri.parse("market://details?id=" + getPackageName());
    Intent myAppLinkToMarket = new Intent(Intent.ACTION_VIEW, uri);
    try {
        startActivity(myAppLinkToMarket);
    } catch (ActivityNotFoundException e) {
        Toast.makeText(this, "Unable to find google play app.",
                Toast.LENGTH_LONG).show();
    }
}

这也适用于Market应用程序。

于 2013-03-06T13:28:16.037 回答