Last active
December 7, 2023 06:03
-
-
Save ForceGT/4d4faa3318b22dac5638c7ba467795a3 to your computer and use it in GitHub Desktop.
Screenshot detection observer for Android 14+, without tying the logic to a specific activity
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
object ScreenshotUtils { | |
private lateinit var screenCaptureCallback: Activity.ScreenCaptureCallback | |
fun Activity.observeScreenShotDetection(onScreenShotDetected: () -> Unit) { | |
// TODO Add API Check here | |
(this as LifecycleOwner).lifecycle.addObserver( | |
object : DefaultLifecycleObserver { | |
override fun onStart(owner: LifecycleOwner) { | |
screenCaptureCallback = Activity.ScreenCaptureCallback(onScreenShotDetected) | |
[email protected](mainExecutor, screenCaptureCallback) | |
} | |
override fun onStop(owner: LifecycleOwner) { | |
[email protected](screenCaptureCallback) | |
} | |
}) | |
} | |
// Call this method from Activity / Fragment | |
// Fragment | |
// requireActivity().observeScreenShotDetection{ | |
// Add code here | |
// } | |
// | |
// Activity | |
// this.observerScreenShotDetection{ | |
// Do something here | |
// } | |
// |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Don't forget to add the permission in the manifest, and surround the above code with the permission check,otherwise it might crash