率谷歌直接在应用程序中播放的应用 [英] Rate Google Play application directly in app

查看:129
本文介绍了率谷歌直接在应用程序中播放的应用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要做速率选择在我的Andr​​oid应用程序。

I need to make rate option in my android app.

我发现这个<一href="http://www.androidsnippets.com/prompt-engaged-users-to-rate-your-app-in-the-android-market-appirater">link

但我不知道,希望我搜索。我想只是提供能力,为用户打分我在谷歌Play应用。

but I'm not sure that want I search. I want to just provide ability for users to rate my app on Google Play.

推荐答案

该评级是通过市场上的应用程序做到让收视率是可信的。如果应用程序被允许处理评价自己,那么开发者可以操纵应用程序的评级任意时间。因此,有没有办法可以处理自己的评级。只能提示用户你的应用程序页面上谷歌播放,并请他评价你的应用程序更多的支持。

The rating is done through market app so that ratings can be trusted. If apps were allowed to handle the rating themselves, then the developer could manipulate the app's rating any time. So there is no way you can handle the rating yourself. You can only prompt the user to your app page on Google Play and ask him to rate your app for more support.

使用内置的意图发动行情

Use the built-in intent to launch market

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();
    }
}

这篇关于率谷歌直接在应用程序中播放的应用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆