I have an application which receives a broadcast from the AlarmManager. Upon this, it starts a transparent Activity (AlarmAlertDialogActivity) which then shows an AlertDialog. Clicking cancel on the AlertDialog result in a call to finish().
As the AlarmAlertDialogActivity is not launched from another Activity but a broadcast receiver, it is launched with
Intent.FLAG_ACTIVITY_NEW_TASK
This means the Activity will be launched in a new task.
My problem is that when the app is relaunched from recent history after cancelling the AlertDialog (i.e. by holding the home button and clicking the app's icon) the AlertDialog is relaunched. I had hoped by using finish()/Intent flags I would be able to avoid this; what I would like to happen is the last Activity before the AlertDialog's parent Activity to be launched.
I have tried bitmasking Intent.FLAG_ACTIVITY_NO_HISTORY as an additional flag when launching AlarmAlertDialogActivity but this appears to make no difference.
Bitmasking Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS works, but only by removing the app from the recent history (as the name suggests). This is detrimental to the user experience.
So, is it possible to get the UI flow I am looking for?
UPDATE - more information as requested:
Logcat from Broadcast receiver, the AlertDialog activity and my main activity:
05-30 10:36:00.132: D/everyOtherApp(362): Received alarm broadcast at: Wed May 30 10:36:00 GMT+00:00 2012
05-30 10:36:00.262: D/everyOtherApp(362): AlarmAlertDialogActivity.onCreate()
05-30 10:36:00.912: D/everyOtherApp(362): AlarmAlertDialogActivity.onResume()
05-30 10:36:12.461: D/everyOtherApp(362): Cancel pressed
//Cancel exits the activity. I now relaunch the app from recent history:
05-30 10:36:20.233: D/everyOtherApp(362): AlarmAlertDialogActivity.onCreate()
05-30 10:36:21.621: D/everyOtherApp(362): AlarmAlertDialogActivity.onResume()
Code for launching Activity from BroadcastReceiver:
Intent intent = new Intent(new Intent(applicationContext, AlarmAlertDialogActivity.class));
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra(Constants.SCHEDULED_ALARM_TAG, alarm);
applicationContext.startActivity(intent);
AlarmAlertDialogActivity in manfest file:
<activity
android:name=".AlarmAlertDialogActivity"
android:theme="@android:style/Theme.NoDisplay" >
</activity>
AlertDialog). By all means use aNotificationthat will appear in the status bar but don't interrupt anything else a user might be doing. – Squonk May 28 '12 at 20:52