|
Meeting SDK for Android API Reference
|
Interface of MyNotes controller APIs. More...
Public Member Functions | |
| MobileRTCSDKError | addListener (MyNotesListener listener) |
| Adds the callback event handler for MyNotes. | |
| boolean | isMyNotesEnabled () |
| Determines whether the MyNotes feature is available. Checks that the user is signed in, the MyNotes feature is enabled by admin. | |
| boolean | canStartMyNotes () |
| Determines whether a MyNotes session can start right now. Checks runtime conditions: transcription is enabled in user settings, RECORD_AUDIO permission is granted, and MyNotes and in-meeting session are mutually exclusive, so this method returns false when a meeting is in progress. | |
| MobileRTCSDKError | showMyNotesView (Activity activity) |
| Shows the MyNotes view. Launches the MyNotes user interface where the user can interact with the note session and view the transcription in real time. The caller should request RECORD_AUDIO permission before invoking this API. | |
Interface of MyNotes controller APIs.
Definition at line 9 of file MyNotesController.java.
| MobileRTCSDKError us.zoom.sdk.MyNotesController.addListener | ( | MyNotesListener | listener | ) |
Adds the callback event handler for MyNotes.
| listener | The event listener. |
| boolean us.zoom.sdk.MyNotesController.canStartMyNotes | ( | ) |
Determines whether a MyNotes session can start right now. Checks runtime conditions: transcription is enabled in user settings, RECORD_AUDIO permission is granted, and MyNotes and in-meeting session are mutually exclusive, so this method returns false when a meeting is in progress.
| boolean us.zoom.sdk.MyNotesController.isMyNotesEnabled | ( | ) |
Determines whether the MyNotes feature is available. Checks that the user is signed in, the MyNotes feature is enabled by admin.
| MobileRTCSDKError us.zoom.sdk.MyNotesController.showMyNotesView | ( | Activity | activity | ) |
Shows the MyNotes view. Launches the MyNotes user interface where the user can interact with the note session and view the transcription in real time. The caller should request RECORD_AUDIO permission before invoking this API.
| activity | The current top activity. |