I want to implement a pop up that should appear sliding in on top of the activity and on top of any dialogs that may be on top of that activity. Also, while the pop-up is on screen, the activity and the dialogs in the background should still be interactive (i.e they should react to touches and all the buttons etc. should still be working). After x amount of time, the pop-up should slide out of the screen.
I came up with the following ideas but all of them have a shortcoming of some sort:
1.Custom Toast While the toast would always appear on top of activities and dialogs, I dont think it can be made to slide in and slide out.
2. Custom dialog The dialog would also come on top of activity and dialogs but the problem here is that the while my custom dialog is on screen, the activity and all the previously opened dialogs would not be interactive anymore (i.e. they will not take touches).
3. ImageView in Activity The problem with this approach is obvious: it would always appear behind dialogs.
Any help would be highly appreciated. Thanks !