Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
DisclaimerBannerConfig.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
3import android.graphics.drawable.Drawable;
4
6 private int positionX;
7 private int positionY;
8 private Drawable background;
9
18 this.positionX = positionX;
19 this.positionY = positionY;
20 this.background = background;
21 }
22
23 public void setPositionX(int positionX) {
24 this.positionX = positionX;
25 }
26
27 public void setPositionY(int positionY) {
28 this.positionY = positionY;
29 }
30
31 public void setBannerBackground(Drawable background) {
32 this.background = background;
33 }
34
35 public int getPositionX() {
36 return positionX;
37 }
38
39 public int getPositionY() {
40 return positionY;
41 }
42
43 public Drawable getBannerBackground() {
44 return background;
45 }
46}
DisclaimerBannerConfig(int positionX, int positionY, Drawable background)
Create a new config for the banner UI.
void setBannerBackground(Drawable background)