Context.RemoveStickyBroadcastAsUser(Intent, UserHandle) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
注意
deprecated
#removeStickyBroadcast(Intent)
该版本允许你指定将发送到该广播的用户。
[Android.Runtime.Register("removeStickyBroadcastAsUser", "(Landroid/content/Intent;Landroid/os/UserHandle;)V", "GetRemoveStickyBroadcastAsUser_Landroid_content_Intent_Landroid_os_UserHandle_Handler")]
[System.Obsolete("deprecated")]
public abstract void RemoveStickyBroadcastAsUser (Android.Content.Intent? intent, Android.OS.UserHandle? user);
[<Android.Runtime.Register("removeStickyBroadcastAsUser", "(Landroid/content/Intent;Landroid/os/UserHandle;)V", "GetRemoveStickyBroadcastAsUser_Landroid_content_Intent_Landroid_os_UserHandle_Handler")>]
[<System.Obsolete("deprecated")>]
abstract member RemoveStickyBroadcastAsUser : Android.Content.Intent * Android.OS.UserHandle -> unit
参数
- intent
- Intent
以前广播的意向。
- user
- UserHandle
要从中删除粘滞广播的 UserHandle。
- 属性
注解
#removeStickyBroadcast(Intent)
该版本允许你指定将发送到该广播的用户。 这不适用于系统映像上未预安装的应用程序。
必须保留 android.Manifest.permission#BROADCAST_STICKY
权限才能使用此 API。 如果未持有该权限, SecurityException
将引发该权限。
此成员已弃用。 不应使用粘滞广播。 他们不提供任何安全性(任何人都可以访问它们)、没有保护(任何人都可以修改它们)和其他许多问题。 建议的模式是使用非粘滞广播来报告 <em>内容</em> 已更改,另一种机制使应用在需要时检索当前值。
本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。
适用于
另请参阅
- <xref:Android.Content.Context.SendStickyBroadcastAsUser(Android.Content.Intent%2c+Android.OS.UserHandle)>