NotificationManager.Notify メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
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 属性ライセンスに記載されている条件に従って使用される作業に基づく変更です。