Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
us.zoom.sdk.ZoomUIDelegate Interface Reference

Inherits SDKZoomUIDelegateInternal< IMeetingInviteMenuItem >.

Inherited by us.zoom.sdk.SimpleZoomUIDelegate.

Public Member Functions

boolean onClickInviteButton (Context context, List< IMeetingInviteMenuItem > inviteMenuList)
 
void afterMeetingMinimized (Activity activity)
 Callback that the user can handle after the meeting minimized.
 
boolean onClickEndButton ()
 Handle this click event to process leave meeting button.
 
boolean onClickAudioButton ()
 Handle this click event to process audio button.
 
boolean onClickVideoButton ()
 Handle this click event to process video button.
 
boolean onClickShareButton ()
 Handle this click event to process share button.
 
boolean onClickMoreButton ()
 Handle this click event to process more button.
 
boolean onClickParticipantsButton ()
 Handle this click event to process participants button.
 
void onVideoSceneChanged (VideoScene fromScene, VideoScene toScene)
 This callback is invoked when video scene changed.
 

Detailed Description

Definition at line 10 of file ZoomUIDelegate.java.

Member Function Documentation

◆ afterMeetingMinimized()

void us.zoom.sdk.ZoomUIDelegate.afterMeetingMinimized ( Activity activity)

Callback that the user can handle after the meeting minimized.

Parameters
activityThe active Activity instance before minimizing the meeting.

Implemented in us.zoom.sdk.SimpleZoomUIDelegate.

◆ onClickAudioButton()

boolean us.zoom.sdk.ZoomUIDelegate.onClickAudioButton ( )

Handle this click event to process audio button.

Returns
true: process by sdk. false: process by zoom internal

Implemented in us.zoom.sdk.SimpleZoomUIDelegate.

◆ onClickEndButton()

boolean us.zoom.sdk.ZoomUIDelegate.onClickEndButton ( )

Handle this click event to process leave meeting button.

Returns
true: process by sdk. false: process by zoom internal

Implemented in us.zoom.sdk.SimpleZoomUIDelegate.

◆ onClickInviteButton()

boolean us.zoom.sdk.ZoomUIDelegate.onClickInviteButton ( Context context,
List< IMeetingInviteMenuItem > inviteMenuList )
Parameters
contextandroid context
inviteMenuListempty invite list. user can add item. The default implementation is MeetingInviteMenuItem
Returns
false: show the invite ui by zoom; true: show the ui by user.

Implemented in us.zoom.sdk.SimpleZoomUIDelegate.

◆ onClickMoreButton()

boolean us.zoom.sdk.ZoomUIDelegate.onClickMoreButton ( )

Handle this click event to process more button.

Returns
true: process by sdk. false: process by zoom internal

Implemented in us.zoom.sdk.SimpleZoomUIDelegate.

◆ onClickParticipantsButton()

boolean us.zoom.sdk.ZoomUIDelegate.onClickParticipantsButton ( )

Handle this click event to process participants button.

Returns
true: process by sdk. false: process by zoom internal

Implemented in us.zoom.sdk.SimpleZoomUIDelegate.

◆ onClickShareButton()

boolean us.zoom.sdk.ZoomUIDelegate.onClickShareButton ( )

Handle this click event to process share button.

Returns
true: process by sdk. false: process by zoom internal

Implemented in us.zoom.sdk.SimpleZoomUIDelegate.

◆ onClickVideoButton()

boolean us.zoom.sdk.ZoomUIDelegate.onClickVideoButton ( )

Handle this click event to process video button.

Returns
true: process by sdk. false: process by zoom internal

Implemented in us.zoom.sdk.SimpleZoomUIDelegate.

◆ onVideoSceneChanged()

void us.zoom.sdk.ZoomUIDelegate.onVideoSceneChanged ( VideoScene fromScene,
VideoScene toScene )

This callback is invoked when video scene changed.

Parameters
fromSceneThe previous scene before the change
toSceneThe new scene after the change

Implemented in us.zoom.sdk.SimpleZoomUIDelegate.