2012-07-27 71 views
-6

使用android的意圖代碼,我能夠從APP切換然而,通過http://plus.google.com如何切換到Android應用上的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

+0

這是一個編程問題?如果是這樣,目前還不清楚,似乎缺乏研究工作。如果沒有,那麼也許你應該考慮發佈在Android論壇上。 [FAQ](http://stackoverflow.com/faq#questions) – adneal 2012-07-27 04:36:47

+0

這個問題太模糊/清楚,沒有*猜測*可以回答你真正的意思。請澄清這個問題......或者它可能會繼續吸引反對票,並最終結案。 – 2012-07-28 01:37:07

+0

好吧,我道歉。這本身不是一個編程問題。我將問題移至http://webapps.stackexchange.com/questions/29438/how-to-switch-google-plus-managing-as-page-in-the-g-android-app如何關閉此問題我? – 2012-07-28 03:41:15

回答

0

覆蓋的下面的方法到您的活動

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