Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
us.zoom.sdk.CustomizedNotificationData Class Reference

Customized notification data. More...

Public Member Functions

 CustomizedNotificationData ()
 CustomizedNotificationData (@StringRes int contentTitleId, @StringRes int contentTextId, @DrawableRes int smallIconId, @DrawableRes int smallIconForLorLaterId, @ColorRes int bgColorId, @DrawableRes int largeIconId)
int getContentTitleId ()
 Gets the content title resource ID.
void setContentTitleId (@StringRes int contentTitleId)
 Sets the content title resource ID.
int getContentTextId ()
 Gets the content text resource ID.
void setContentTextId (@StringRes int contentTextId)
 Sets the content text resource ID.
int getSmallIconId ()
 Gets the small icon resource ID.
void setSmallIconId (@DrawableRes int smallIconId)
 Sets the small icon resource ID.
int getSmallIconForLorLaterId ()
 Gets the small icon resource ID for Lollipop or later.
void setSmallIconForLorLaterId (@DrawableRes int smallIconForLorLaterId)
 Sets the small icon resource ID for Lollipop or later.
int getBgColorId ()
 Gets the background color resource ID.
void setBgColorId (@ColorRes int bgColorId)
 Sets the background color resource ID.
int getLargeIconId ()
 Gets the large icon resource ID.
void setLargeIconId (@DrawableRes int largeIconId)
 Sets the large icon resource ID.

Package Attributes

int contentTitleId
int contentTextId
int smallIconId
int smallIconForLorLaterId
int bgColorId
int largeIconId

Detailed Description

Customized notification data.

Definition at line 10 of file CustomizedNotificationData.java.

Constructor & Destructor Documentation

◆ CustomizedNotificationData() [1/2]

us.zoom.sdk.CustomizedNotificationData.CustomizedNotificationData ( )
inline

Definition at line 29 of file CustomizedNotificationData.java.

29 {
30 }

◆ CustomizedNotificationData() [2/2]

us.zoom.sdk.CustomizedNotificationData.CustomizedNotificationData ( @StringRes int contentTitleId,
@StringRes int contentTextId,
@DrawableRes int smallIconId,
@DrawableRes int smallIconForLorLaterId,
@ColorRes int bgColorId,
@DrawableRes int largeIconId )
inline

Definition at line 32 of file CustomizedNotificationData.java.

32 {
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 }

References bgColorId, contentTextId, contentTitleId, largeIconId, smallIconForLorLaterId, and smallIconId.

Member Function Documentation

◆ getBgColorId()

int us.zoom.sdk.CustomizedNotificationData.getBgColorId ( )
inline

Gets the background color resource ID.

Returns
The background color resource ID.

Definition at line 123 of file CustomizedNotificationData.java.

123 {
124 return bgColorId;
125 }

References bgColorId.

◆ getContentTextId()

int us.zoom.sdk.CustomizedNotificationData.getContentTextId ( )
inline

Gets the content text resource ID.

Returns
The content text resource ID.

Definition at line 66 of file CustomizedNotificationData.java.

66 {
67 return contentTextId;
68 }

References contentTextId.

◆ getContentTitleId()

int us.zoom.sdk.CustomizedNotificationData.getContentTitleId ( )
inline

Gets the content title resource ID.

Returns
The content title resource ID.

Definition at line 47 of file CustomizedNotificationData.java.

47 {
48 return contentTitleId;
49 }

References contentTitleId.

◆ getLargeIconId()

int us.zoom.sdk.CustomizedNotificationData.getLargeIconId ( )
inline

Gets the large icon resource ID.

Returns
The large icon resource ID.

Definition at line 142 of file CustomizedNotificationData.java.

142 {
143 return largeIconId;
144 }

References largeIconId.

◆ getSmallIconForLorLaterId()

int us.zoom.sdk.CustomizedNotificationData.getSmallIconForLorLaterId ( )
inline

Gets the small icon resource ID for Lollipop or later.

Returns
The small icon resource ID for Lollipop or later.

Definition at line 104 of file CustomizedNotificationData.java.

104 {
105 return smallIconForLorLaterId;
106 }

References smallIconForLorLaterId.

◆ getSmallIconId()

int us.zoom.sdk.CustomizedNotificationData.getSmallIconId ( )
inline

Gets the small icon resource ID.

Returns
The small icon resource ID.

Definition at line 85 of file CustomizedNotificationData.java.

85 {
86 return smallIconId;
87 }

References smallIconId.

◆ setBgColorId()

void us.zoom.sdk.CustomizedNotificationData.setBgColorId ( @ColorRes int bgColorId)
inline

Sets the background color resource ID.

Parameters
bgColorIdThe background color resource ID.

Definition at line 132 of file CustomizedNotificationData.java.

132 {
133 this.bgColorId = bgColorId;
134 }

References bgColorId.

◆ setContentTextId()

void us.zoom.sdk.CustomizedNotificationData.setContentTextId ( @StringRes int contentTextId)
inline

Sets the content text resource ID.

Parameters
contentTextIdThe content text resource ID.

Definition at line 75 of file CustomizedNotificationData.java.

75 {
76 this.contentTextId = contentTextId;
77 }

References contentTextId.

◆ setContentTitleId()

void us.zoom.sdk.CustomizedNotificationData.setContentTitleId ( @StringRes int contentTitleId)
inline

Sets the content title resource ID.

Parameters
contentTitleIdThe content title resource ID.

Definition at line 56 of file CustomizedNotificationData.java.

56 {
57 this.contentTitleId = contentTitleId;
58 }

References contentTitleId.

◆ setLargeIconId()

void us.zoom.sdk.CustomizedNotificationData.setLargeIconId ( @DrawableRes int largeIconId)
inline

Sets the large icon resource ID.

Parameters
largeIconIdThe large icon resource ID.

Definition at line 151 of file CustomizedNotificationData.java.

151 {
152 this.largeIconId = largeIconId;
153 }

References largeIconId.

◆ setSmallIconForLorLaterId()

void us.zoom.sdk.CustomizedNotificationData.setSmallIconForLorLaterId ( @DrawableRes int smallIconForLorLaterId)
inline

Sets the small icon resource ID for Lollipop or later.

Parameters
smallIconForLorLaterIdThe small icon resource ID for Lollipop or later.

Definition at line 113 of file CustomizedNotificationData.java.

113 {
114 this.smallIconForLorLaterId = smallIconForLorLaterId;
115 }

References smallIconForLorLaterId.

◆ setSmallIconId()

void us.zoom.sdk.CustomizedNotificationData.setSmallIconId ( @DrawableRes int smallIconId)
inline

Sets the small icon resource ID.

Parameters
smallIconIdThe small icon resource ID.

Definition at line 94 of file CustomizedNotificationData.java.

94 {
95 this.smallIconId = smallIconId;
96 }

References smallIconId.

Field Documentation

◆ bgColorId

int us.zoom.sdk.CustomizedNotificationData.bgColorId
package

◆ contentTextId

int us.zoom.sdk.CustomizedNotificationData.contentTextId
package

◆ contentTitleId

int us.zoom.sdk.CustomizedNotificationData.contentTitleId
package

◆ largeIconId

int us.zoom.sdk.CustomizedNotificationData.largeIconId
package

◆ smallIconForLorLaterId

int us.zoom.sdk.CustomizedNotificationData.smallIconForLorLaterId
package

◆ smallIconId

int us.zoom.sdk.CustomizedNotificationData.smallIconId
package