
org.robolectric.shadows.ShadowKeyguardManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of framework Show documentation
Show all versions of framework Show documentation
An alternative Android testing framework.
The newest version!
package org.robolectric.shadows;
import android.app.KeyguardManager;
import org.robolectric.annotation.Implementation;
import org.robolectric.annotation.Implements;
import org.robolectric.annotation.RealObject;
import org.robolectric.shadow.api.Shadow;
import static android.os.Build.VERSION_CODES.M;
@Implements(KeyguardManager.class)
public class ShadowKeyguardManager {
@RealObject private KeyguardManager realKeyguardManager;
private KeyguardManager.KeyguardLock keyguardLock = Shadow.newInstanceOf(KeyguardManager.KeyguardLock.class);
private boolean inRestrictedInputMode = false;
@Implementation
public boolean inKeyguardRestrictedInputMode() {
return inRestrictedInputMode;
}
@Implementation
public KeyguardManager.KeyguardLock newKeyguardLock(String tag) {
return keyguardLock;
}
public void setinRestrictedInputMode(boolean restricted) {
inRestrictedInputMode = restricted;
}
private boolean isKeyguardSecure;
@Implementation(minSdk = M)
public boolean isKeyguardSecure() {
return isKeyguardSecure;
}
public void setIsKeyguardSecure(boolean secure) {
isKeyguardSecure = secure;
}
private boolean isDeviceSecure;
@Implementation(minSdk = M)
public boolean isDeviceSecure() {
return isDeviceSecure;
}
public void setIsDeviceSecure(boolean isDeviceSecure) {
this.isDeviceSecure = isDeviceSecure;
}
@Implements(KeyguardManager.KeyguardLock.class)
public static class ShadowKeyguardLock {
private boolean keyguardEnabled = true;
@Implementation
public void disableKeyguard() {
keyguardEnabled = false;
}
@Implementation
public void reenableKeyguard() {
keyguardEnabled = true;
}
public boolean isEnabled() {
return keyguardEnabled;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy