"年率此应用" -link在谷歌播放手机上存储的应用程序年率、机上、应用程序、QUOT

由网友(半废人i)分享简介:我想提出一个价格这个程序-link在Android应用程序打开该用户的谷歌Play商店应用程序的上市在他们的手机上。I'd like to put a "Rate This App"-link in an Android App to open up the app-listing in the user's Goo...

我想提出一个价格这个程序-link在Android应用程序打开该用户的谷歌Play商店应用程序的上市在他们的手机上。

I'd like to put a "Rate This App"-link in an Android App to open up the app-listing in the user's Google Play store app on their phone.

在什么code我必须写创建市场:// 的http:// -link开放的谷歌播放在手机上存储的应用程序? 你在哪里把code? 有没有人有这方面的一个示例实现? 您必须指定屏幕里的市场:// 的http:// 链接会放置,并且这是最好的使用 - 市场:// 的http:// What code do I have to write to create the market:// or http://-link open in the Google Play store app on the phone? Where do you put the code? Does anyone have a sample implementation of this? Do you have to specify the screen where the market:// or http:// link will be placed, and which is the best to use - market:// or http://?

在此先感谢!

推荐答案

我打开从我的应用程序Play商店具有以下code:

I open the Play Store from my App with the following code:

    Uri uri = Uri.parse("market://details?id=" + context.getPackageName());
    Intent goToMarket = new Intent(Intent.ACTION_VIEW, uri);
    // To count with Play market backstack, After pressing back button, 
    // to taken back to our application, we need to add following flags to intent. 
    goToMarket.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY |
                    Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET |
                    Intent.FLAG_ACTIVITY_MULTIPLE_TASK);
    try {
        startActivity(goToMarket);
    } catch (ActivityNotFoundException e) {
        startActivity(new Intent(Intent.ACTION_VIEW,
                Uri.parse("http://play.google.com/store/apps/details?id=" + context.getPackageName())));
    }

这将启动Play商店与已经打开了你的应用程序页面。用户可以给它。

This will launch the Play Store with your App page already opened. The user can rate it there.

阅读全文

相关推荐

最新文章