I observed from WhatsApp such behaviors: when a new message arrives, WhatsApp will launch a dialog-style activity and such a activity could be cancelled or confirmed by the user.
Therefore, I added a similar dialog-style activity to my app. For test purposes, I also added an alarm manager and an alarm receiver so that this activity will be launched every 10 seconds by the alarm receiver.
The code I used to launch the dialog-style activity is:
Intent dialogIntent = new Intent(MyApplication.sharedApplication, MyDialogStyleActivity.class);
dialogIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
MyApplication.sharedApplication.startActivity(dialogIntent);
Everything looked fine if my application had not been launched. The dialog activity would show , behind which was the home screen, just like WhatsApp's behavior.
But there was a problem, if my application had been launched and put in the background, and then the alarm triggered the launch of the dialog activity, before the launch of the dialog activity, the main activity of my app would come back to foreground and show as well.
I'm confused, all I want for now is that, even if my application had been launched, when something triggers the dialog-style activity, only this dialog-style activity would show, no main activity or any other un-related activity.
Anyone could help?