Make a Dialog that will always appear above other Dialogs in Android

Viewed 13

In Android, I want to create a dialog that will always appear ahead of other dialogs. Even if a Dialog is opened in any stream afterwards, I want it to remain behind the Dialog I created.

One way to do this when I researched is the answer below.

https://stackoverflow.com/a/37483379/12040459

But TYPE_SYSTEM_ALERT seems to be deprecared. It can also affect other things for the project as it has extensive permission in the AndroidManifest.xml.

Does anyone have a simpler and more effective solution for this purpose?

0 Answers
Related