I'm trying to show a dialog/popUpWindow on top of the active application. I have an activity which starts an application via intents. I want to show the dialog just after my activity goes to background and the called application comes to foreground.
In the OnStop() method of my activity I have the following code:
var dialog = new Dialog(this);
dialog.SetContentView(Resource.Layout.childLayout);
dialog.SetTitle("PopUp");
dialog.SetCancelable(true);
dialog.Show();
but the dialog doesn't appear on top of the current application (started from my activity), it appears behind it and in front of my activity.
How can I bring the dialog/popUpWindow on top of the current window/application?
This is the code which launches the 2 intents: first intents launches adobe reader and second intent launches my transparent activity:
var intentPdf = new Intent();
PackageManager pm = PackageManager;
intentPdf = pm.GetLaunchIntentForPackage("com.adobe.reader");
intentPdf.SetDataAndType(uri, "application/pdf");
StartActivity(intentPdf);
Thread.Sleep(5000);
var showChildActivity = new Intent();
showChildActivity.SetClass(this, typeof(ChildActivity));
showChildActivity.SetAction(Intent.ActionMain);
showChildActivity.SetFlags(ActivityFlags.ReorderToFront);
StartActivity(showChildActivity);