Method CreateNotificationBuilder
CreateNotificationBuilder(AndroidNotification, string)
Create Notification.Builder. Will automatically generate the ID for notification. CreateNotificationBuilder(int, AndroidNotification, string)
Declaration
public static AndroidJavaObject CreateNotificationBuilder(AndroidNotification notification, string channelId)
Parameters
| Type | Name | Description |
|---|---|---|
| AndroidNotification | notification | |
| string | channelId |
Returns
| Type | Description |
|---|---|
| AndroidJavaObject |
CreateNotificationBuilder(int, AndroidNotification, string)
Create Notification.Builder object on Java side using privided AndroidNotification.
Declaration
public static AndroidJavaObject CreateNotificationBuilder(int id, AndroidNotification notification, string channelId)
Parameters
| Type | Name | Description |
|---|---|---|
| int | id | ID for the notification |
| AndroidNotification | notification | Struct with notification data |
| string | channelId | Channel id |
Returns
| Type | Description |
|---|---|
| AndroidJavaObject | A proxy object for created Notification.Builder |