共用方式為


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

此通知的識別碼。 配對 (tag, id) 在您的應用程式內必須是唯一的。

notification
Notification

Notification物件,描述要向用戶顯示的內容。 不得為 null。

屬性

備註

張貼要顯示在狀態列中的通知。 如果應用程式已經張貼具有相同標記和標識元的通知,但尚未取消,則會由更新的資訊取代。

所有 android.service.notification.NotificationListenerService listener services 都會獲得 Intent#FLAG_GRANT_READ_URI_PERMISSION 此通知上提供之任何 Uri uris 的存取權,或 NotificationChannel 此通知會張貼至 使用 Context#grantUriPermission(String, Uri, int)。 當通知取消時,許可權將會撤銷,或者您可以使用 撤銷許可權 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。

屬性

備註

張貼要顯示在狀態列中的通知。 如果應用程式已張貼具有相同標識符的通知,但尚未取消,則會由更新的資訊取代。

android.app.NotificationManager.notify(int, android.app.Notification)Java 檔。

此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。

適用於