Merge "Fix NPE for devices that don't use a lock icon on the bouncer." into qt-dev

This commit is contained in:
TreeHugger Robot
2019-04-22 23:30:57 +00:00
committed by Android (Google) Code Review

View File

@@ -693,6 +693,9 @@ public class KeyguardIndicationController implements StateListener {
@Override
public void onKeyguardBouncerChanged(boolean bouncer) {
if (mLockIcon == null) {
return;
}
mLockIcon.setBouncerVisible(bouncer);
}
};