boolean isScreenOn(Context context) {
DisplayManager dm = (DisplayManager) context.getSystemService(Context.DISPLAY_SERVICE);
boolean screenOn = false;
for (Display display : dm.getDisplays()) {
if (display.getState() != Display.STATE_OFF) {
screenOn = true;
}
}
return screenOn;
}
'android source ' 카테고리의 다른 글
BlockedQue Operation (1) | 2025.03.18 |
---|---|
res > mipmap > filename 읽기 (0) | 2024.12.10 |
TextView clicked animation (0) | 2024.12.03 |
textview touch color 변화 (0) | 2024.10.24 |
Sound, media 대신 ring mode로 설정 (0) | 2024.10.19 |