set launchMode of GamesList activity to singleTask. This seems to be

the only way to have it wind up on top *and without it being a second
instance of the activity* when relaunched in response to a move-made
notification.  Even passing the SINGLE_TASK flag to the relaunching
Intent doesn't accomplish this.
This commit is contained in:
Andy2 2011-02-14 07:04:34 -08:00
parent c2aa7438c7
commit be4bb3a73e

View file

@ -37,7 +37,7 @@
<activity android:name="GamesList"
android:label="@string/title_games_list"
android:launchMode="singleTop"
android:launchMode="singleTask"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />