1

我正在开发使用户在 Google Play 商店中对我的应用程序进行评分的应用程序,因此我希望用户在单击我的应用程序中的评分按钮时,重定向到市场中的评分对话框而不是我的应用程序页面。我的代码是:

try {
    final String pkgName = getPackageName();
    startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + pkgName)));
} catch (Exception e) {
    vShowDialog(getString(R.string.cannot_connect_title), getString(R.string.cannot_connect_title) + getString(R.string.error_TryAgain));
}
4

1 回答 1

2

据我所知,您只能在所需页面上打开 Google Play 应用程序。之后发生的任何事情都是你无法企及的。

于 2012-12-30T14:01:16.937 回答