Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
MobileRTCVideoUnitRenderInfo.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
3import android.graphics.Color;
4import android.text.TextPaint;
5
17 public boolean is_username_visible = false;
18
22 public boolean is_border_visible = false;
23
27 public boolean is_show_audio_off = false;
28
32 public int background_color = Color.BLACK;
33
38
42 public int username_left_margin = 0;
43
47 public int username_bottom_margin = 0;
48
52 public int border_color = Color.TRANSPARENT;
53
57 public int border_width = 2;
58
65 public TextPaint username_textpaint;
66
70 public int corner_radius;
71
76
81 public boolean enableGalleryMode = false;
82
83
94
96 super(0, 0, 0, 0);
97 }
98
99
100
101}
Render information of ZOOM video view unit: location and size.
Render information of meeting video unit.
int username_corner_radius
user name round corner radius. unit px
boolean is_show_audio_off
Set whether to display user's audio status on video unit. Default value: false.
int username_left_margin
The distance of the username from the left side of the video.
int corner_radius
Video render round corner radius. unit px.
boolean is_username_visible
Set whether to display user's name on video unit. Default value: false.
boolean enableGalleryMode
Set attendee render to use gallery mode. this will force subscribe 90P video and ignore the view heig...
boolean is_border_visible
Set whether to display video border on video unit. Default value: false.
MobileRTCVideoUnitRenderInfo(int xPercent, int yPercent, int widthPercent, int heightPercent)
int aspect_mode
Set video unit aspect mode defined in MobileRTCVideoUnitAspectMode class. Default value: original.
int border_color
video border on video unit. Take effect when MobileRTCVideoUnitRenderInfo.is_border_visible is true.
int background_color
Set the background color of video unit. Default value: black.
TextPaint username_textpaint
TextPaint for user name. TextPaint TextPaint.bgColor for user name background color....
int username_bottom_margin
The distance of the username from the bottom side of the video.