Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to find out screen status on an android device?

Is there any way to find out that the android device screen is on or not without broadcast receivers? I want to make minute interval updates on device via service that is invoked by alarm manager. I also want to preserve battery life. So the update service will run if the device screen is on.

i found a solution to my problem with this code:

PowerManager powermanager;
powermanager = (PowerManager) this.getSystemService(Context.POWER_SERVICE); 
if (powermanager.isScreenOn())
    {
        ...
    }
like image 503
mozer Avatar asked Nov 14 '22 07:11

mozer


1 Answers

You can consider another approach to the problem:

Using Broadcast Receivers, set your repeating alarm when the screen is turned on. Then, when the screen is turned off, cancel your alarm.

like image 59
zrgiu Avatar answered Nov 16 '22 03:11

zrgiu