<Android Check Picture in Picture from another act...
# stackoverflow
u
Android Check Picture in Picture from another activity When the user activates picture in picture mode and continues using the app, I need to change the behavior of the other activities. I tried to use: override fun onPictureInPictureModeChanged(isInPictureInPictureMode: Boolean, newConfig: Configuration ) { if (isInPictureInPictureMode) { // TODO } else { // TODO } } fun isPipActive(): Boolean { return if( Build.VERSION.SDK_INT >= Build.VERSION_CODES.N ) {...