Is it possible for hiding invite button for host ? And also is it possible for hiding chat button host too ?
Hi oguzhan.kivrak,
Thanks for the post. If you are using Zoom default UI:
-
To hide the invite button:
Set the propertyno_invite
in the MeetingOption to disable the invite button(https://zoom.github.io/zoom-sdk-android/us/zoom/sdk/MeetingOptions.html#no_invite) -
To hide the chat button:
You may use the methoddisableChatUI
(https://zoom.github.io/zoom-sdk-android/us/zoom/sdk/MeetingSettingsHelper.html#disableChatUI-boolean-)
ZoomSDK.getInstance().getMeetingSettingsHelper().disableChatUI(true);
Hope this helps. Thanks!
Thanks Carson,
I tried this solution “https://zoom.github.io/zoom-sdk-android/us/zoom/sdk/MeetingOptions.html#no_invite” but still host has invite button.
And also i tried for disable chat this code ZoomSDK.getInstance().getMeetingSettingsHelper().disableChatUI(true);
it gives error “can’t resolved method”
Hi oguzhan.kivrak,
Thanks for the reply. May I ask what is the SDK version you are using? And are you using API or email login to host a meeting? I just tried to disable invite and the chat button with our demo app available in https://github.com/zoom/zoom-sdk-android and I am able to hide both of them.
Hope this helps. Thanks!
Thanks for your reply. I am using this version v4.4.56656.1030. I will upgrade and i will share the results.
Thanks againg
If you would like to hide the invite button, please use MeetingOptions.invite_options=InviteOptions.INVITE_DISABLE_ALL
Thanks!