直接在应用中为Google Play应用评分

问题描述 投票:39回答:9

我需要在我的Android应用程序中制作费率选项。

我找到了这个link

但我不确定是否要搜索。我想为用户提供在Google Play上为我的应用评分的能力。

android google-play rate
9个回答
118
投票

评级是通过市场应用程序完成的,因此可以信任评级。如果允许应用程序自行处理评级,那么开发人员可以随时操纵应用程序的评级。所以你无法自己处理评级。您只能提醒用户访问Google Play上的应用页面,并要求他们为您的应用评分以获得更多支持。

使用内置意图推出市场

private void launchMarket() {
    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 market app", Toast.LENGTH_LONG).show();
    }
}

8
投票

这很简单......

final String appPackageName = "your.package.name";

try {
      startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + appPackageName)));
    } catch (android.content.ActivityNotFoundException anfe) {
      startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://play.google.com/store/apps/details?id=" + appPackageName)));
    }

7
投票
public void launchMarket() 
{
    Uri uri = Uri.parse("market://details?id=" + this.getPackageName());
    Intent myAppLinkToMarket = new Intent(Intent.ACTION_VIEW, uri);
    try 
    {
        mContext.startActivity(myAppLinkToMarket);
    } 
    catch (ActivityNotFoundException e) 
    {
        Toast.makeText(this, " Sorry, Not able to open!", Toast.LENGTH_SHORT).show();
    }
}

6
投票

您可以使用第三方工具。以下是一些常用的解决方案:

Aparader:Kingswatch

apptentive:https://github.com/drewjw81/appirater-android/

polljoy:http://www.apptentive.com/

AppRater:gasxswpoi


3
投票

用户无法直接在您的应用中为您的应用评分。他们必须访问Google Play并对其进行评分。与链接显示一样,您必须重定向用户才能在Google Play上查看您的应用:

https://polljoy.com

2
投票

对于下面的代码,我使用了try和catch方法。 try和catch方法将如下工作。点击按钮后,try方法将尝试在Android手机上搜索Google Play商店应用,如果已安装则启动它并导航到Play商店中的应用程序。但是,如果您的Android手机上没有Play商店应用程序,则执行catch方法并启动应用程序上安装的浏览器并导航到Play商店中的应用程序。 getPackageName()是一个内置函数,用于获取项目包名称。您可以手动将其添加为字符串。

另见https://github.com/delight-im/AppRater

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

完整的代码。

amazon store

0
投票
String package="com.example.android";

0
投票

粘贴此简单代码即可从您的应用程序中播放商店评级页面

   button.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                     try {
                            Uri uri = Uri.parse("market://details?id="+getPackageName()+"");
                            Intent goMarket = new Intent(Intent.ACTION_VIEW, uri);
                            startActivity(goMarket);
                        }catch (ActivityNotFoundException e){
                            Uri uri = Uri.parse("https://play.google.com/store/apps/details?id="+getPackageName()+"");
                            Intent goMarket = new Intent(Intent.ACTION_VIEW, uri);
                            startActivity(goMarket);
                        }
                }
            });

0
投票

我总是使用像这样的方法

 Intent intent = new Intent(Intent.ACTION_VIEW);
  intent.setData(Uri.parse("market://details?id=com.test(This is the package name)"));
  startActivity(intent);
© www.soinside.com 2019 - 2024. All rights reserved.