Hide or disable meeting details in android app using android sdk

Dears, I am using SDK version zoom-sdk-android-5.5.1.1319

As we want to hide meeting details on the android app, we tried many ways and this too from the forum posts. User manjeetbrar91 was very kind to share this in a thread in 2020 we tried this too. But very sadly this also didnt work for us. Could you pls tell what went wrong any other workaround for this solution. Anyways Thank you manjeetbrar91

manjeetbrar91 said.
Pass JoinMeetingOptions in joinMeetingWithParams

        MeetingService meetingService = mZoomSDK.getMeetingService();
        JoinMeetingOptions options = new JoinMeetingOptions();
        options.no_driving_mode = true;
        options.no_invite = true;
        options.meeting_views_options = MeetingViewsOptions.NO_TEXT_PASSWORD
                +MeetingViewsOptions.NO_TEXT_MEETING_ID;


        JoinMeetingParams params = new JoinMeetingParams();
        params.displayName = "ABC";
        params.meetingNo = "xxxxxxxxxx";
        params.password = "xxxxxxxxxx";

        meetingService.joinMeetingWithParams(context, params,options);

If not works then add one more option
options.no_titlebar

Hi @bineeshtvr1, thanks for the post.

The solution you are referring to is the correct way of hiding the meeting ID and passcode. Just to make sure we’re talking about the same thing, can you please provide a screenshot of what you are trying to hide from the meeting UI?

Thanks!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.