Intent.ActionCloseSystemDialogs Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Broadcast Action: This is broadcast when a user action should request a temporary system dialog to dismiss.
[Android.Runtime.Register("ACTION_CLOSE_SYSTEM_DIALOGS")]
[Android.Runtime.RequiresPermission("android.permission.BROADCAST_CLOSE_SYSTEM_DIALOGS")]
public const string ActionCloseSystemDialogs;
[<Android.Runtime.Register("ACTION_CLOSE_SYSTEM_DIALOGS")>]
[<Android.Runtime.RequiresPermission("android.permission.BROADCAST_CLOSE_SYSTEM_DIALOGS")>]
val mutable ActionCloseSystemDialogs : string
Field Value
Implements
- Attributes
Remarks
Broadcast Action: This is broadcast when a user action should request a temporary system dialog to dismiss. Some examples of temporary system dialogs are the notification window-shade and the recent tasks dialog.
This member is deprecated. This intent is deprecated for third-party applications starting from Android Build.VERSION_CODES#S
for security reasons. Unauthorized usage by applications will result in the broadcast intent being dropped for apps targeting API level less than Build.VERSION_CODES#S
and in a SecurityException
for apps targeting SDK level Build.VERSION_CODES#S
or higher. Instrumentation initiated from the shell (eg. tests) is still able to use the intent. The platform will automatically collapse the proper system dialogs in the proper use-cases. For all others, the user is the one in control of closing dialogs.
Java documentation for android.content.Intent.ACTION_CLOSE_SYSTEM_DIALOGS
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.