zoom hide participant list

How to hide participant(swipe tab) list in zoom SDK in android?

we already try with NO_BUTTON_PARTICIPANTS

opts.meeting\_views\_options = MeetingViewsOptions.NO\_BUTTON\_PARTICIPANTS;

but its not the work and not the hide participant list. can you please let me know the alternate solution.

prioirty urgent to hide participant list.

Thnaks in advnace 

 

Hi, I have test this case, the option just works fine.

Could you provide your start/join meeting code snippet?

Thanks.

I’m also facing this issue, My code is as follow!

JoinMeetingOptions joinMeetingOptions=new JoinMeetingOptions();
joinMeetingOptions.no_video=true;
joinMeetingOptions.no_driving_mode=true;
joinMeetingOptions.no_titlebar=true;
joinMeetingOptions.no_bottom_toolbar=true;
joinMeetingOptions.no_invite=true;
joinMeetingOptions.meeting_views_options= MeetingViewsOptions.NO_BUTTON_PARTICIPANTS;
joinMeetingOptions.no_webinar_register_dialog=true;

	JoinMeetingParams jparams = new JoinMeetingParams();

	jparams.displayName = DISPLAY_NAME;
	jparams.meetingNo = MEETING_ID;
	jparams.password = MEETING_PASSWORD;

	int ret = meetingService.joinMeetingWithParams(this,jparams,joinMeetingOptions);

Hi @mnawaz6935,

Thanks for using Zoom SDK. Are you trying to hide the participant button? I just try your code in our demo app and it is working as expected. The following code will hide the participant button in the Zoom default UI.

joinMeetingOptions.meeting_views_options = MeetingViewsOptions.NO_BUTTON_PARTICIPANTS;

Thanks!

Hello sir I am joining the meeting using we link like meetingService.handZoomWebUrl(webJoinLink) so how can I customize those things