Not able to see the leave button in deafult ZOOM UI

Description
Not able to see the leave button in deafult ZOOM UI, i prefered using the guidelines by zoom but does not work, even after enabling the title bar form MeetingOptions

Device: Android Mi A3

my code:

MeetingService meetingService = zoomSDK.getMeetingService();

    StartMeetingOptions opts = new StartMeetingOptions();
    opts.no_driving_mode = true;

// opts.no_meeting_end_message = true;
opts.no_titlebar = false;
opts.no_bottom_toolbar = false;
opts.no_invite = true;
opts.no_audio = false;
opts.no_video = false;
opts.no_share = true;
opts.no_disconnect_audio = true;
opts.meeting_views_options = MeetingViewsOptions.NO_BUTTON_LEAVE;
opts.custom_meeting_id="";

    StartMeetingParamsWithoutLogin params = new StartMeetingParamsWithoutLogin();
    params.userId = Constants.ZoomConstant.Companion.getUSER_ID();
    params.zoomAccessToken = Constants.ZoomConstant.Companion.getZOOM_ACCESS_TOKEN();
    params.meetingNo = Constants.ZoomConstant.Companion.getMEETING_ID();
    params.displayName = DISPLAY_NAME;

In andorid SDK.

Hi @atulkumar22, thanks for using our SDK.

The reason the leave button is not visible is because you are preventing it from being shown by setting opts.meeting_views_options = MeetingViewsOptions.NO_BUTTON_LEAVE; on your StartMeetingOptions. Remove that line and it will be displayed as expected.

Thanks!