Intent.ActionProfileUnavailable 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 sent to the primary user when an associated profile has become unavailable.
[Android.Runtime.Register("ACTION_PROFILE_UNAVAILABLE", ApiSince=35)]
public const string ActionProfileUnavailable;
[<Android.Runtime.Register("ACTION_PROFILE_UNAVAILABLE", ApiSince=35)>]
val mutable ActionProfileUnavailable : string
Field Value
Implements
- Attributes
Remarks
Broadcast sent to the primary user when an associated profile has become unavailable. This is sent when a user enables quiet mode for the profile. Carries an extra #EXTRA_USER
that specifies the UserHandle
of the profile. When quiet mode is changed, this broadcast will carry a boolean extra #EXTRA_QUIET_MODE
indicating the new state of quiet mode. This is only sent to registered receivers, not manifest receivers.
This broadcast is similar to #ACTION_MANAGED_PROFILE_UNAVAILABLE
but functions as a generic broadcast for all users of type android.os.UserManager#isProfile()
}. In case of a managed profile, both #ACTION_MANAGED_PROFILE_UNAVAILABLE
and #ACTION_PROFILE_UNAVAILABLE
broadcasts are sent.
Java documentation for android.content.Intent.ACTION_PROFILE_UNAVAILABLE
.
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.