Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to handle sleep mode enter in android?

I didn't find it anywhere, how can I handle entering sleeping mode in android? I want to do something when android device entered to the sleep mode? Is this possible or is there anyway to handle it?

like image 459
Savas Adar Avatar asked Nov 23 '25 13:11

Savas Adar


2 Answers

Just make this by using BroadCastReceivers for system-calls (wakeup/sleep)

Android - how to receive broadcast intents ACTION_SCREEN_ON/OFF?

like image 185
berlindev Avatar answered Nov 25 '25 05:11

berlindev


how can I handle entering sleeping mode in android?

Generally, you don't. There is nothing you need to do related to sleep mode.

I want to do something when android device entered to the sleep mode?

I certainly hope not.

like image 37
CommonsWare Avatar answered Nov 25 '25 03:11

CommonsWare