Methods Summary |
---|
public void | addStateMonitorCallback(com.android.internal.policy.IKeyguardStateCallback callback)
try {
mService.addStateMonitorCallback(callback);
} catch (RemoteException e) {
Slog.w(TAG , "Remote Exception", e);
}
|
public android.os.IBinder | asBinder()
return mService.asBinder();
|
public void | dismiss()
try {
mService.dismiss();
} catch (RemoteException e) {
Slog.w(TAG , "Remote Exception", e);
}
|
public void | doKeyguardTimeout(android.os.Bundle options)
try {
mService.doKeyguardTimeout(options);
} catch (RemoteException e) {
Slog.w(TAG , "Remote Exception", e);
}
|
public boolean | isInputRestricted()
return mKeyguardStateMonitor.isInputRestricted();
|
public boolean | isSecure()
return mKeyguardStateMonitor.isSecure();
|
public boolean | isShowing()
return mKeyguardStateMonitor.isShowing();
|
public void | keyguardDone(boolean authenticated, boolean wakeup)
try {
mService.keyguardDone(authenticated, wakeup);
} catch (RemoteException e) {
Slog.w(TAG , "Remote Exception", e);
}
|
public void | onActivityDrawn()
try {
mService.onActivityDrawn();
} catch (RemoteException e) {
Slog.w(TAG , "Remote Exception", e);
}
|
public void | onBootCompleted()
try {
mService.onBootCompleted();
} catch (RemoteException e) {
Slog.w(TAG , "Remote Exception", e);
}
|
public void | onDreamingStarted()
try {
mService.onDreamingStarted();
} catch (RemoteException e) {
Slog.w(TAG , "Remote Exception", e);
}
|
public void | onDreamingStopped()
try {
mService.onDreamingStopped();
} catch (RemoteException e) {
Slog.w(TAG , "Remote Exception", e);
}
|
public void | onScreenTurnedOff(int reason)
try {
mService.onScreenTurnedOff(reason);
} catch (RemoteException e) {
Slog.w(TAG , "Remote Exception", e);
}
|
public void | onScreenTurnedOn(com.android.internal.policy.IKeyguardShowCallback result)
try {
mService.onScreenTurnedOn(result);
} catch (RemoteException e) {
Slog.w(TAG , "Remote Exception", e);
}
|
public void | onSystemReady()
try {
mService.onSystemReady();
} catch (RemoteException e) {
Slog.w(TAG , "Remote Exception", e);
}
|
public void | setCurrentUser(int userId)
mKeyguardStateMonitor.setCurrentUser(userId);
try {
mService.setCurrentUser(userId);
} catch (RemoteException e) {
Slog.w(TAG , "Remote Exception", e);
}
|
public void | setKeyguardEnabled(boolean enabled)
try {
mService.setKeyguardEnabled(enabled);
} catch (RemoteException e) {
Slog.w(TAG , "Remote Exception", e);
}
|
public void | setOccluded(boolean isOccluded)
try {
mService.setOccluded(isOccluded);
} catch (RemoteException e) {
Slog.w(TAG , "Remote Exception", e);
}
|
public void | startKeyguardExitAnimation(long startTime, long fadeoutDuration)
try {
mService.startKeyguardExitAnimation(startTime, fadeoutDuration);
} catch (RemoteException e) {
Slog.w(TAG , "Remote Exception", e);
}
|
public void | verifyUnlock(com.android.internal.policy.IKeyguardExitCallback callback)
try {
mService.verifyUnlock(callback);
} catch (RemoteException e) {
Slog.w(TAG , "Remote Exception", e);
}
|