Facing issue in audio

Hello

I am working on android app and integrate ZoomSDK, Its integrated successfully but while user join any meeting the its not able to listen the host voice and user have no option of audio 

I want only host can speak and participants can  listen only .

Here is the code to join the meeting from app:-

ZoomSDK zoomSDK = ZoomSDK.getInstance();

if(!zoomSDK.isInitialized()) {
Toast.makeText(this, “ZoomSDK has not been initialized successfully”, Toast.LENGTH_LONG).show();
return;
}

MeetingService meetingService = zoomSDK.getMeetingService();

MeetingOptions opts = new MeetingOptions();
int ret = meetingService.joinMeeting(this, createMeetingParticipant.getZoomId(), createMeetingParticipant.getUuid(), createMeetingParticipant.getMeetingPassword(), opts);

Please help me out its urgent for us. 

Thanks 

Sorry, I don’t understand exactly what you mean.  Is there no audio button on meeting ui activity or the audio button not work in your case?  Please check the user’s audio status, if the audio status is disconnected, please connect audio( meeting ui-> "more"button->connect audio).

Thanks.