从我的活动开始,我正在启动游戏商店并让用户安装应用程序,但我也想让游戏商店将用户返回我的活动。
推出游戏店的代码
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商店将用户返回到我的活动中,这样我就可以继续使用我的应用程序所需的其余步骤
答案 0 :(得分:1)
没有。您无法控制任何其他不属于您自己的应用的行为。