Want To Hide Meeting Id, Meeting Password, Meeting Link, Participant Id From Main Screen in Android SDK

Description
Hello, I m using latest sdk for android. and i want to hide view which appear with meeting id, meeting password, invitation link etc. I am sharing screen shot here with, which i want to hide.

Which version?
v5.0.24437.0708

To Reproduce(If applicable)
Steps to reproduce the behavior:

  1. Go to ‘…’
  2. Click on ‘…’
  3. Scroll down to ‘…’
  4. See error

Screenshots
If applicable, add screenshots to help explain your problem.

Smartphone (please complete the following information):

  • Device: [e.g. iPhone6]
  • OS: [e.g. iOS8.1]
  • Version [e.g. 22]

Additional context
Add any other context about the problem here.

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

Thank you !! Working Now. One More thing i want to ask. Can i set Default Picture of the User when I join to meeting ?

Also When I Start Meeting with logged in User I want to change the name which display on meeting screen. Is it possible ?

Pass Logged in user name in displayName param
JoinMeetingParams params = new JoinMeetingParams();
params.displayName = “ABC”;

i did’t worked on this. if i found any solution will let you know

Thank you !! It works for me but when I start meeting from my App. I used

StartMeetingOptions opts = ZoomMeetingUISettingHelper.getStartMeetingOptions();
opts.no_video=!isVideo;
opts.no_audio=!isAudio;
opts.no_share=!isShare;
opts.no_invite = true;
opts.no_driving_mode = true;
opts.meeting_views_options = MeetingViewsOptions.NO_TEXT_PASSWORD
+ MeetingViewsOptions.NO_TEXT_MEETING_ID;

    StartMeetingParams4NormalUser params = new StartMeetingParams4NormalUser();
    params.meetingNo = meetingNo;
    return meetingService.startMeetingWithParams(context, params, opts);

And In these there is no option for change name… So Any other solution for it ?

You can use JoinMeetingParams class instead of StartMeetingParams4NormalUser for guest user as well as logged-in user

Ok. Thanks !! It is working from me !

Thanks for helping out! :heart_eyes:

1 Like

Hi @kaushikjoshi10694,

Regarding your question:

Could you elaborate on the “default picture of the user”? Do you mean the default avatar of each user in the participant list?

Thanks!

Yes. When Any Participant join without login. I want to display default avtar

Hi @kaushikjoshi10694,

Thanks for the reply. Currently it is not supported to change the avatar of the participants.

Thanks!

Hi,

Thanks for the reply. No problem !!

Glad to be helpful. I will go ahead and close this thread. Please feel free to create another post if any other questions. :slight_smile: