|
Meeting SDK for Android API Reference
|
Interface for customizing Zoom meeting UI behavior and handling UI events. More...
Inherits SDKZoomUIDelegateInternal< IMeetingInviteMenuItem >.
Inherited by us.zoom.sdk.SimpleZoomUIDelegate.
Public Member Functions | |
| 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 | onClickEndButton () |
| Handles the click event to process the leave meeting button. | |
| boolean | onClickAudioButton () |
| Handles the click event to process the audio button. | |
| boolean | onClickVideoButton () |
| Handles the click event to process the video button. | |
| boolean | onClickShareButton () |
| Handles the click event to process the share button. | |
| boolean | onClickMoreButton () |
| Handles the click event to process the more button. | |
| boolean | onClickParticipantsButton () |
| Handles the click event to process the participants button. | |
| void | onVideoSceneChanged (VideoScene fromScene, VideoScene toScene) |
| Callback event when the video scene changes. | |
Interface for customizing Zoom meeting UI behavior and handling UI events.
Definition at line 13 of file ZoomUIDelegate.java.
| void us.zoom.sdk.ZoomUIDelegate.afterMeetingMinimized | ( | Activity | activity | ) |
Callback that the user can handle after the meeting is minimized.
| activity | The active Activity instance before minimizing the meeting. |
Implemented in us.zoom.sdk.SimpleZoomUIDelegate.
| boolean us.zoom.sdk.ZoomUIDelegate.onClickAudioButton | ( | ) |
Handles the click event to process the audio button.
Implemented in us.zoom.sdk.SimpleZoomUIDelegate.
| boolean us.zoom.sdk.ZoomUIDelegate.onClickEndButton | ( | ) |
Handles the click event to process the leave meeting button.
Implemented in us.zoom.sdk.SimpleZoomUIDelegate.
| boolean us.zoom.sdk.ZoomUIDelegate.onClickInviteButton | ( | Context | context, |
| List< IMeetingInviteMenuItem > | inviteMenuList ) |
Handles the invite button click event.
| context | Android context. |
| inviteMenuList | Empty invite list. User can add items. The default implementation is MeetingInviteMenuItem. |
Implemented in us.zoom.sdk.SimpleZoomUIDelegate.
| boolean us.zoom.sdk.ZoomUIDelegate.onClickMoreButton | ( | ) |
Handles the click event to process the more button.
Implemented in us.zoom.sdk.SimpleZoomUIDelegate.
| boolean us.zoom.sdk.ZoomUIDelegate.onClickParticipantsButton | ( | ) |
Handles the click event to process the participants button.
Implemented in us.zoom.sdk.SimpleZoomUIDelegate.
| boolean us.zoom.sdk.ZoomUIDelegate.onClickShareButton | ( | ) |
Handles the click event to process the share button.
Implemented in us.zoom.sdk.SimpleZoomUIDelegate.
| boolean us.zoom.sdk.ZoomUIDelegate.onClickVideoButton | ( | ) |
Handles the click event to process the video button.
Implemented in us.zoom.sdk.SimpleZoomUIDelegate.
| void us.zoom.sdk.ZoomUIDelegate.onVideoSceneChanged | ( | VideoScene | fromScene, |
| VideoScene | toScene ) |
Callback event when the video scene changes.
| fromScene | The previous scene before the change. |
| toScene | The new scene after the change. |
Implemented in us.zoom.sdk.SimpleZoomUIDelegate.