如何切换到Android应用程序上的Google +页面?

时间:2012-07-27 04:20:26

标签: android android-intent google-plus

使用Android Intent中的代码,我可以通过http://plus.google.com

使用互联网从APP切换到Google +页面

但是,我无法从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

1 个答案:

答案 0 :(得分:0)

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

@Override
public void onBackPressed() {
    Intent ip = new Intent(this, youactivity.class);
    startActivity(ip);
    finish();
    super.onBackPressed();
}