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
11 @StringRes
13
14 @StringRes
16
17 @DrawableRes
19
20 @DrawableRes
22
23 @ColorRes
25
26 @DrawableRes
28
31
32 public CustomizedNotificationData(@StringRes int contentTitleId, @StringRes int contentTextId, @DrawableRes int smallIconId, @DrawableRes int smallIconForLorLaterId, @ColorRes int bgColorId, @DrawableRes int largeIconId) {
33 this.contentTitleId = contentTitleId;
34 this.contentTextId = contentTextId;
35 this.smallIconId = smallIconId;
36 this.smallIconForLorLaterId = smallIconForLorLaterId;
37 this.bgColorId = bgColorId;
38 this.largeIconId = largeIconId;
39 }
40
46 @StringRes
47 public int getContentTitleId() {
48 return contentTitleId;
49 }
50
56 public void setContentTitleId(@StringRes int contentTitleId) {
57 this.contentTitleId = contentTitleId;
58 }
59
65 @StringRes
66 public int getContentTextId() {
67 return contentTextId;
68 }
69
75 public void setContentTextId(@StringRes int contentTextId) {
76 this.contentTextId = contentTextId;
77 }
78
84 @DrawableRes
85 public int getSmallIconId() {
86 return smallIconId;
87 }
88
94 public void setSmallIconId(@DrawableRes int smallIconId) {
95 this.smallIconId = smallIconId;
96 }
97
103 @DrawableRes
106 }
107
113 public void setSmallIconForLorLaterId(@DrawableRes int smallIconForLorLaterId) {
114 this.smallIconForLorLaterId = smallIconForLorLaterId;
115 }
116
122 @ColorRes
123 public int getBgColorId() {
124 return bgColorId;
125 }
126
132 public void setBgColorId(@ColorRes int bgColorId) {
133 this.bgColorId = bgColorId;
134 }
135
141 @DrawableRes
142 public int getLargeIconId() {
143 return largeIconId;
144 }
145
151 public void setLargeIconId(@DrawableRes int largeIconId) {
152 this.largeIconId = largeIconId;
153 }
154}
int getBgColorId()
Gets the background color resource ID.
int getLargeIconId()
Gets the large icon resource ID.
int getSmallIconId()
Gets the small icon resource ID.
void setContentTextId(@StringRes int contentTextId)
Sets the content text resource ID.
void setSmallIconForLorLaterId(@DrawableRes int smallIconForLorLaterId)
Sets the small icon resource ID for Lollipop or later.
int getContentTitleId()
Gets the content title resource ID.
void setSmallIconId(@DrawableRes int smallIconId)
Sets the small icon resource ID.
void setBgColorId(@ColorRes int bgColorId)
Sets the background color resource ID.
int getSmallIconForLorLaterId()
Gets the small icon resource ID for Lollipop or later.
void setContentTitleId(@StringRes int contentTitleId)
Sets the content title resource ID.
int getContentTextId()
Gets the content text resource ID.
void setLargeIconId(@DrawableRes int largeIconId)
Sets the large icon resource ID.
CustomizedNotificationData(@StringRes int contentTitleId, @StringRes int contentTextId, @DrawableRes int smallIconId, @DrawableRes int smallIconForLorLaterId, @ColorRes int bgColorId, @DrawableRes int largeIconId)