Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
ZoomUIDelegate.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
3import android.app.Activity;
4import android.content.Context;
5
6import com.zipow.videobox.sdk.SDKZoomUIDelegateInternal;
7
8import java.util.List;
9
13public interface ZoomUIDelegate extends SDKZoomUIDelegateInternal<IMeetingInviteMenuItem> {
14
22 boolean onClickInviteButton(Context context, List<IMeetingInviteMenuItem> inviteMenuList);
23
29 void afterMeetingMinimized(Activity activity);
30
37
44
51
58
65
72
79 void onVideoSceneChanged(VideoScene fromScene, VideoScene toScene);
80}
Enumeration of video scenes.
Interface for customizing Zoom meeting UI behavior and handling UI events.
boolean onClickVideoButton()
Handles the click event to process the video button.
void onVideoSceneChanged(VideoScene fromScene, VideoScene toScene)
Callback event when the video scene changes.
boolean onClickShareButton()
Handles the click event to process the share button.
boolean onClickMoreButton()
Handles the click event to process the more button.
void afterMeetingMinimized(Activity activity)
Callback that the user can handle after the meeting is minimized.
boolean onClickParticipantsButton()
Handles the click event to process the participants button.
boolean onClickAudioButton()
Handles the click event to process the audio button.
boolean onClickEndButton()
Handles the click event to process the leave meeting button.
boolean onClickInviteButton(Context context, List< IMeetingInviteMenuItem > inviteMenuList)
Handles the invite button click event.