0

从我的活动中,我正在启动 Play 商店并让用户安装应用程序,但我也希望 Play 商店将用户返回到我的活动中。

启动 PLAY 商店的代码

String blueFireId = "com.bluefirereader"; // this is out of the oncreate function

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

上面的代码工作正常,还有什么方法可以让 Play 商店将用户返回到我的活动,以便我可以继续使用我的应用程序所需的剩余步骤

4

1 回答 1

1

不可以。您无法控制不属于您自己的任何其他应用程序的行为。

于 2013-02-08T09:45:34.173 回答