Which Mobile Client SDK version?
v5.4.3.613
To Reproduce(If applicable)
Steps to reproduce the behavior:
- Initiate zoom call from user1 to user2 and call connected
- Tap on
more
button at bottom bar and tap on Minimize Meeting option - Meeting is minimised and showing picture in picture window
- So want to do some stuff once meeting minimised, is there any callback method to do this
Already I tried with below approach
ZoomSDK.getInstance().zoomUIService.setZoomUIDelegate(object : ZoomUIDelegate {
override fun onClickInviteButton(
p0: Context?,
p1: MutableList<MeetingInviteMenuItem>?
): Boolean = true
override fun afterMeetingMinimized(p0: Activity?) {
Timber.e("zoom afterMeetingMinimized called")
}
})
but, not worked
Thanks.