The Way to Programming
The Way to Programming
Hello i am new in android programming and i want to know hoe to create android lock screen application. or any type of tutorial about lock screen.
You can create a service that runs continuously in background, this service can register a receiver
which will be used to get the SCREEN_ON and SCREEN_OFF intent.
When SCREEN_ON is called you can start your lock screen activity in New Task to ask for password.
This sample should help you get started.
https://github.com/Joisar/LockScreenApp
Sign in to your account