Gallery view

,

Hi,

Two question about the zoom meeting gallery view:

  1. Is there a way to set it as the default view?

  2. Is there a way to customize the sizes and location of the video tiles to make it resemble ‘speaker view mode’?

 

 

Hi Meir,

  1. yes, you can. 

utilize the meetingSettings.setSwitchVideoLayoutUserCountThreshold() API in Android SDK.

for example you can use like following:

MeetingSettingsHelper meetingSettings = zoomSDK.getMeetingSettingsHelper();

meetingSettings.setGalleryViewCapacity(9);

meetingSettings.setSwitchVideoLayoutAccordingToUserCountEnabled(true);

meetingSettings.setSwitchVideoLayoutUserCountThreshold(2);

so when there is second user join the meeting, it will switch to gallery view.

 

  1. Zoom currently doesn’t support to change location and size of each video tiles in gallery view.
1 Like