Intent.ActionUserInitialize Field

Definition

Sent the first time a user is starting, to allow system apps to perform one time initialization.

[Android.Runtime.Register("ACTION_USER_INITIALIZE")]
public const string ActionUserInitialize;
[<Android.Runtime.Register("ACTION_USER_INITIALIZE")>]
val mutable ActionUserInitialize : string

Field Value

Implements

Attributes

Remarks

Sent the first time a user is starting, to allow system apps to perform one time initialization. (This will not be seen by third party applications because a newly initialized user does not have any third party applications installed for it.) This is sent early in starting the user, around the time the home app is started, before #ACTION_BOOT_COMPLETED is sent. This is sent as a foreground broadcast, since it is part of a visible user interaction; be as quick as possible when handling it.

Java documentation for android.content.Intent.ACTION_USER_INITIALIZE.

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.

Applies to