0

How to show a ProgressDialog from a background service that is unclosable in any way, displayed above whole screen, above any app, including keys? I mean a dialog exactly like the "Power off.. shutting down" one that is displayed when phone is shutting down, when you can neither do anything to make it disappear nor click anything below it.

PS. If the app needs to be a system app to create such dialog, that's not a problem for me.

Nicofisi
  • 1,083
  • 1
  • 15
  • 27

2 Answers2

0

Create a full screen activity Using full screen Activity prevent back navigation by overriding onBackPressed() Disable back button in android

Community
  • 1
  • 1
Ivan Wooll
  • 4,145
  • 3
  • 23
  • 34
0

Use this

ProgressDialog.setCancelable(false);
Niraj Niroula
  • 2,376
  • 1
  • 17
  • 36