Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
SimpleZoomUIDelegate.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
3import android.app.Activity;
4import android.content.Context;
5
6import java.util.List;
7
11public class SimpleZoomUIDelegate implements ZoomUIDelegate {
12 @Override
13 public boolean onClickInviteButton(Context context, List<IMeetingInviteMenuItem> inviteMenuList) {
14 return false;
15 }
16
17 @Override
18 public void afterMeetingMinimized(Activity activity) {
19
20 }
21
22 @Override
23 public boolean onClickEndButton() {
24 return false;
25 }
26
27 @Override
28 public boolean onClickAudioButton() {
29 return false;
30 }
31
32 @Override
33 public boolean onClickVideoButton() {
34 return false;
35 }
36
37 @Override
38 public boolean onClickShareButton() {
39 return false;
40 }
41
42 @Override
43 public boolean onClickMoreButton() {
44 return false;
45 }
46
47 @Override
48 public boolean onClickParticipantsButton() {
49 return false;
50 }
51
52 @Override
53 public void onVideoSceneChanged(VideoScene fromScene, VideoScene toScene) {
54
55 }
56}
Default implementation for ZoomUIDelegate.
void onVideoSceneChanged(VideoScene fromScene, VideoScene toScene)
Callback event when the video scene changes.
boolean onClickMoreButton()
Handles the click event to process the more button.
boolean onClickInviteButton(Context context, List< IMeetingInviteMenuItem > inviteMenuList)
Handles the invite button click event.
void afterMeetingMinimized(Activity activity)
Callback that the user can handle after the meeting is minimized.
boolean onClickAudioButton()
Handles the click event to process the audio button.
boolean onClickShareButton()
Handles the click event to process the share button.
boolean onClickEndButton()
Handles the click event to process the leave meeting button.
boolean onClickParticipantsButton()
Handles the click event to process the participants button.
boolean onClickVideoButton()
Handles the click event to process the video button.
Enumeration of video scenes.
Interface for customizing Zoom meeting UI behavior and handling UI events.