android source

내 앱이 화면 전면에 있나 확인하는 법

리오파파 2025. 2. 25. 11:23

 


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