Cornholio2108 / BestAlarm

0 stars 0 forks source link

Screen On/Off checking #11

Closed Cornholio2108 closed 4 years ago

Cornholio2108 commented 4 years ago

Check screen on/off to notice user activity


final IntentFilter filter = new IntentFilter(Intent.ACTION_SCREEN_ON);
filter.addAction(Intent.ACTION_SCREEN_OFF);
mReceiver = new ScreenReceiver();
registerReceiver(mReceiver, filter);
Cornholio2108 commented 4 years ago

Might not be needed anymore...