Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
CustomizedMiniMeetingViewSize.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
3
5 private int topMargin;
6 private int rightMargin;
7 private int width;
8 private int height;
9
12
22 this.topMargin = topMargin;
23 this.rightMargin = rightMargin;
24 this.width = width;
25 this.height = height;
26 }
27
28 public int getTopMargin() {
29 return topMargin;
30 }
31
32 public int getRightMargin() {
33 return rightMargin;
34 }
35
36 public int getWidth() {
37 return width;
38 }
39
40 public int getHeight() {
41 return height;
42 }
43}
CustomizedMiniMeetingViewSize(int topMargin, int rightMargin, int width, int height)
Create a new size of the minimized meeting view with the specified coordinates.