NotificationManager.Notify 方法

定义

重载

Notify(String, Int32, Notification)

发布要显示在状态栏中的通知。

Notify(Int32, Notification)

发布要显示在状态栏中的通知。

Notify(String, Int32, Notification)

发布要显示在状态栏中的通知。

[Android.Runtime.Register("notify", "(Ljava/lang/String;ILandroid/app/Notification;)V", "GetNotify_Ljava_lang_String_ILandroid_app_Notification_Handler")]
public virtual void Notify (string? tag, int id, Android.App.Notification? notification);
[<Android.Runtime.Register("notify", "(Ljava/lang/String;ILandroid/app/Notification;)V", "GetNotify_Ljava_lang_String_ILandroid_app_Notification_Handler")>]
override this.Notify : string * int * Android.App.Notification -> unit

参数

tag
String

此通知的字符串标识符。 可为 null

id
Int32

此通知的标识符。 对(标记,ID)在应用程序中必须是唯一的。

notification
Notification

描述 Notification 要向用户显示的内容的对象。 不能为 null。

属性

注解

发布要显示在状态栏中的通知。 如果应用程序已发布具有相同标记和 ID 的通知,但尚未取消,则会将其替换为更新的信息。

将授予对android.service.notification.NotificationListenerService listener services此通知上提供的任何Uri uris访问权限,或者NotificationChannel此通知发布到使用Context#grantUriPermission(String, Uri, int)Intent#FLAG_GRANT_READ_URI_PERMISSION 当通知被取消时,将撤销权限,也可以撤消权限 Context#revokeUriPermission(Uri, int)

适用于 . 的 android.app.NotificationManager.notify(java.lang.String, int, android.app.Notification)Java 文档

本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。

适用于

Notify(Int32, Notification)

发布要显示在状态栏中的通知。

[Android.Runtime.Register("notify", "(ILandroid/app/Notification;)V", "GetNotify_ILandroid_app_Notification_Handler")]
public virtual void Notify (int id, Android.App.Notification? notification);
[<Android.Runtime.Register("notify", "(ILandroid/app/Notification;)V", "GetNotify_ILandroid_app_Notification_Handler")>]
override this.Notify : int * Android.App.Notification -> unit

参数

id
Int32

应用程序中此通知唯一的标识符。

notification
Notification

描述 Notification 要向用户显示的内容的对象。 不能为 null。

属性

注解

发布要显示在状态栏中的通知。 如果应用程序已发布具有相同 ID 的通知,但尚未取消,则会将其替换为更新的信息。

适用于 . 的 android.app.NotificationManager.notify(int, android.app.Notification)Java 文档

本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。

适用于