-6

使用 android Intent 中的代码,我可以通过http://plus.google.com使用互联网从 APP 切换到 google plus 页面

但是,我无法从 Google Plus 浏览器重新打开 Android 应用程序。

请告知如何从 Google Plus 浏览器重新打开 Android 应用程序?

更新:

我现在已将问题移至 webapps。

https://webapps.stackexchange.com/questions/29438/how-to-switch-google-plus-managing-as-page-in-the-g-android-app

4

1 回答 1

0

将以下方法覆盖到您的活动中

@Override
public void onBackPressed() {
    Intent ip = new Intent(this, youactivity.class);
    startActivity(ip);
    finish();
    super.onBackPressed();
}
于 2012-07-27T05:00:47.527 回答