Keyguard is responsible for:
Keyguard is the first screen available when turning on the device, as long as the user has not specified a security method of NONE.
The journeys below generally refer to Keyguard's portion of the overall flow, especially regarding use of the power button. Power button key interpretation (short press, long press, very long press, multi press) is done in PhoneWindowManager, with calls to PowerManagerService to sleep or wake up, if needed.
Begins with the device in low power mode, with the display active for AOD or inactive. PowerManagerService can be directed to wake up on various user-configurable signals, such as lift to wake, screen taps, among others. AOD, whether visibly enabled or not, handles these signals to transition AOD to full Lockscreen content. See more in AOD.
An indication to power off the device most likely comes from one of two signals: the user presses the power button or the screen timeout has passed. This may lock the device
OEMs may choose to enable a long-press action that displays a button at the bottom of lockscreen. This button links to lockscreen customization. This can be achieved by overriding the long_press_keyguard_customize_lockscreen_enabled
resource in packages/SystemUI/res/values/config.xml
.
These are interactive UI elements that appear on the lockscreen when the device is locked. They allow the user to perform quick actions without unlocking their device. To learn more about them, please see this dedicated document
Enable verbose keyguard logs that will print to logcat. Should only be used temporarily for debugging. See KeyguardConstants.
adb shell setprop log.tag.Keyguard DEBUG && adb shell am crash com.android.systemui
More coming