Reputation: 188
I need to make an app that will open even if the screen is locked. Is there any possibilities to make this?
Upvotes: 2
Views: 1400
Reputation: 6326
Use AlarmManager it runs of top of lock screen like a Default alarm application,we can have the access of GUI even if phone is locked.
see this tutorial for sample application which uses AlarmManager class
Upvotes: 2
Reputation: 16142
I don't think that you can launch your app when phone is lock.
Android only allow to run a Service in background and get Notification even your phone is locked.
That is my opinion might be some expert can know how to achieve this.
Open to update my answer.
Upvotes: 1