Skip to content

Instantly share code, notes, and snippets.

@samhorne
samhorne / BackgroundCheck.kt
Created July 19, 2022 15:43
Android check if app in foreground or background
fun printProcessInfo(){
val myProcess = RunningAppProcessInfo()
ActivityManager.getMyMemoryState(myProcess)
val isInBackground = myProcess.importance != RunningAppProcessInfo.IMPORTANCE_FOREGROUND
Log.i("activitystate", "isInBackground: $isInBackground")
Log.i("activitystate", "Process: ${myProcess.importance}")
}