Android - Screen On/Off 이벤트 수신, 상태 확인

Android는 화면이 켜지거나 꺼질 때 ACTION_SCREEN_ON, ACTION_SCREEN_OFF 인텐트를 브로드캐스트로 전달합니다. 앱에서는 이 인텐트를 받아서 디바이스의 화면이 켜지는지, 꺼지는지 알 수 있습니다.

BroadcastReceiver 등록

암시적(Implicit) 브로드캐스트 제한 정책으로, 타겟이 정해지지 않은, 암시적 인텐트는 Context로 등록된 리시버로만 전달됩니다. 즉, AndroidManifest에 등록된 리시버는 인텐트를 받을 수 없게 됩니다. 이 정책은 Target API 26 이상인 앱에게만 적용됩니다.

따라서, ACTION_SCREEN_ON, ACTION_SCREEN_OFF 인텐트를 수신하려면 다음과 같이 Context.registerReceiver()으로 동적으로 등록해야 합니다.

val intentFilter = IntentFilter(Intent.ACTION_SCREEN_OFF)
    intentFilter.addAction(Intent.ACTION_SCREEN_ON)
val receiver = object: BroadcastReceiver() {
    override fun onReceive(context: Context?, intent: Intent?) {
        val action = intent!!.action
        Log.d("Test", "receive : $action")

        when (action) {
            Intent.ACTION_SCREEN_ON -> {
                // do something
            }
            Intent.ACTION_SCREEN_OFF -> {
                // do something
            }
        }
    }
}

registerReceiver(receiver, intentFilter);

Power key로 Screen off/on을 하면 다음과 같이 출력됩니다.

12-23 16:31:36.922 21799 21799 D Test    : receive : android.intent.action.SCREEN_OFF
12-23 16:31:38.331 21799 21799 D Test    : receive : android.intent.action.SCREEN_ON

PowerManager.isInteractive()으로 Screen On 상태 확인

isInteractive()는 화면이 켜져있다면 true를 리턴하며, 꺼져있으면 false를 리턴합니다.

val pm = getSystemService(Context.POWER_SERVICE) as PowerManager
if (pm.isInteractive) {
    // screen on
} else {
    // screen off
}

PowerManager.isScreenOn() API도 Screen on의 상태를 리턴합니다. 이 API는 deprecated 되었기 때문에, PowerManager.isInteractive()를 사용해야 합니다.

Loading script...

Related Posts

codechachaCopyright ©2019 codechacha