如何從我以前的位置恢復我的應用程序。Android:從以前的位置恢復應用程序
請注意,它仍處於活動狀態,只是暫停。所以如果我點擊Android的當前應用程序按鈕或應用程序圖標,它恢復正常。
但誰辦這從我的窗口小部件..
我有以下幾點:
// Create an Intent to launch Activity
Intent intent = new Intent(context, LoginForm.class);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0);
這很明顯啓動,而不是僅僅恢復應用程序的LoginForm的。
有誰知道如何做到這一點?
編輯:
只是爲了澄清,我不想要任何特別的東西。我基本上想模仿按下android圖標啓動器。
參見[這](http://stackoverflow.com/questions/3268962/when-is-it-necessary-to-use -single-launch -mode-in-an-android-widget-or-applic)SO問題(可能重複) – Luke
請不要試圖混淆啓動模式來完成這項工作。這是沒有必要的,並在以後創造更多麻煩。 –