How to show a pop up dialog from your app when screen is locked on Android?

1.3k views Asked by At

How can I push a pop-up from my app to the user when the screen is locked on android?

1

There are 1 answers

1
Denys Karpov On

You can use "service" for this case. For example: http://www.vogella.com/tutorials/AndroidServices/article.html

From a service you can create your own dialog without activity: How to display a Dialog from a Service