Show dialog activity over another app from background

In order to have a dialog activity shown over another application, a few things must be done: The dialog activity must have a translucent theme, to allow the other application to show up behind it (see @android:style/Theme.Translucent.NoTitleBar) The dialog activity must not fill the screen, for the same reason (see Window.setLayout) The dialog activity must … Read more