Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
MobileRTCRenderInfo.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
8public class MobileRTCRenderInfo {
12 public int xPercent;
16 public int yPercent;
20 public int widthPercent;
24 public int heightPercent;
25
26
30 public int leftMargin;
31
35 public int topMargin;
36
40 public int width;
41
45 public int height;
46
47
49 this.xPercent = xPercent;
50 this.yPercent = yPercent;
51 this.widthPercent = widthPercent;
52 this.heightPercent = heightPercent;
53 }
54
55 @Override
56 public String toString() {
57 return String.format("[%d, %d, %d, %d,%d, %d, %d, %d]", xPercent, yPercent, widthPercent, heightPercent,
59 }
60}
Render information of ZOOM video view unit: location and size.
MobileRTCRenderInfo(int xPercent, int yPercent, int widthPercent, int heightPercent)