0

I need urgent help to make a android app to be launched after unlocking the phone.

I want always on top kind of functionality in App, Means whenever phone unlocked by the user , they should see the app.

is it Possible??

Thank in Advance

coolhj
  • 1

2 Answers2

1

Not really. You could approximate it by having your app replace the home screen/launcher, but the user will still be able to revert to the original one through the settings menu.

Chris Stratton
  • 39,853
  • 6
  • 84
  • 117
1

Yes. This thread discusses that there is an Intent Object that you can capture using a BroadcastReceiver. The BroadcastReceiver can then run the code you need or launch an Activity, etc.

Community
  • 1
  • 1
Phil
  • 35,852
  • 23
  • 123
  • 164