Change meeting notification title

How can I change the title of the Notification. It’s showing “Zoom” in the notification bar (attached image), which I need to change to a different name. I tried different answers in the forum, but it doesn’t have a good example.

Which Android Client SDK version?
Downloaded latest SDK on 5/5/21

1 Like

Hi @developer.anarr, thanks for using our SDK.

The notification shown by the SDK can be customized through setCustomizedNotificationData. Note that this approach requires you to fully implement the notification’s appearance and behavior when it is clicked by the user.

Thanks!

Could you please provide a sample example? Is there a way to just change the logo?

Hi @developer.anarr,

Unfortunately we do not have any samples available for this feature. In order to change the icon visible in the notification, you would need to get the ID of the resource you would like to set as the icon and pass it into setSmallIconId and setLargeIconId.

Thanks!

You could use the below code sample:

CustomizedNotificationData notificationData = new CustomizedNotificationData();
// give your icon from mipmap
notificationData.setLargeIconId(R.mipmap.ic_launcher);
notificationData.setSmallIconId(R.mipmap.ic_launcher);
notificationData.setSmallIconForLorLaterId(R.mipmap.ic_launcher);
meetingSettings.setCustomizedNotificationData(notificationData, null);
1 Like

Thanks @arun.d for providing the code snippet!

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.