次の方法で共有


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のアクセス権が付与Intent#FLAG_GRANT_READ_URI_PERMISSIONされるか、この通知が次のNotificationChannel使用Context#grantUriPermission(String, Uri, int)に投稿されます。 通知が取り消されるとアクセス許可が取り消されるか、または 〘 でアクセス許可 Context#revokeUriPermission(Uri, int)を取り消すことができます。

の Java ドキュメントandroid.app.NotificationManager.notify(java.lang.String, int, android.app.Notification)

このページの一部は、Android オープンソース プロジェクトによって作成および共有され、クリエイティブ コモンズ 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 の通知が既にアプリケーションによって投稿されており、まだ取り消されていない場合は、更新された情報に置き換えられます。

の Java ドキュメントandroid.app.NotificationManager.notify(int, android.app.Notification)

このページの一部は、Android オープンソース プロジェクトによって作成および共有され、クリエイティブ コモンズ 2.5 属性ライセンスに記載されている条件に従って使用される作業に基づく変更です。

適用対象