Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
CustomizedNotificationData.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
3import androidx.annotation.ColorRes;
4import androidx.annotation.DrawableRes;
5import androidx.annotation.StringRes;
6
8 @StringRes
10
11 @StringRes
13
14 @DrawableRes
16
17 @DrawableRes
19
20 @ColorRes
22
23 @DrawableRes
25
28
29 public CustomizedNotificationData(@StringRes int contentTitleId, @StringRes int contentTextId, @DrawableRes int smallIconId, @DrawableRes int smallIconForLorLaterId, @ColorRes int bgColorId, @DrawableRes int largeIconId) {
30 this.contentTitleId = contentTitleId;
31 this.contentTextId = contentTextId;
32 this.smallIconId = smallIconId;
33 this.smallIconForLorLaterId = smallIconForLorLaterId;
34 this.bgColorId = bgColorId;
35 this.largeIconId = largeIconId;
36 }
37
38 @StringRes
39 public int getContentTitleId() {
40 return contentTitleId;
41 }
42
43 public void setContentTitleId(@StringRes int contentTitleId) {
44 this.contentTitleId = contentTitleId;
45 }
46
47 @StringRes
48 public int getContentTextId() {
49 return contentTextId;
50 }
51
52 public void setContentTextId(@StringRes int contentTextId) {
53 this.contentTextId = contentTextId;
54 }
55
56 @DrawableRes
57 public int getSmallIconId() {
58 return smallIconId;
59 }
60
61 public void setSmallIconId(@DrawableRes int smallIconId) {
62 this.smallIconId = smallIconId;
63 }
64
65 @DrawableRes
68 }
69
70 public void setSmallIconForLorLaterId(@DrawableRes int smallIconForLorLaterId) {
71 this.smallIconForLorLaterId = smallIconForLorLaterId;
72 }
73
74 @ColorRes
75 public int getBgColorId() {
76 return bgColorId;
77 }
78
79 public void setBgColorId(@ColorRes int bgColorId) {
80 this.bgColorId = bgColorId;
81 }
82
83 @DrawableRes
84 public int getLargeIconId() {
85 return largeIconId;
86 }
87
88 public void setLargeIconId(@DrawableRes int largeIconId) {
89 this.largeIconId = largeIconId;
90 }
91}
void setContentTextId(@StringRes int contentTextId)
void setSmallIconForLorLaterId(@DrawableRes int smallIconForLorLaterId)
void setSmallIconId(@DrawableRes int smallIconId)
void setContentTitleId(@StringRes int contentTitleId)
void setLargeIconId(@DrawableRes int largeIconId)
CustomizedNotificationData(@StringRes int contentTitleId, @StringRes int contentTextId, @DrawableRes int smallIconId, @DrawableRes int smallIconForLorLaterId, @ColorRes int bgColorId, @DrawableRes int largeIconId)