Android APIs
public static abstract class

FingerprintManager.AuthenticationCallback

extends Object
java.lang.Object
   ↳ android.hardware.fingerprint.FingerprintManager.AuthenticationCallback

Class Overview

Callback structure provided to authenticate(CryptoObject, CancellationSignal, int, AuthenticationCallback, Handler). Users of authenticate(CryptoObject, CancellationSignal, int, AuthenticationCallback, Handler) must provide an implementation of this for listening to fingerprint events.

Summary

Public Constructors
FingerprintManager.AuthenticationCallback()
Public Methods
void onAuthenticationError(int errorCode, CharSequence errString)
Called when an unrecoverable error has been encountered and the operation is complete.
void onAuthenticationFailed()
Called when a fingerprint is valid but not recognized.
void onAuthenticationHelp(int helpCode, CharSequence helpString)
Called when a recoverable error has been encountered during authentication.
void onAuthenticationSucceeded(FingerprintManager.AuthenticationResult result)
Called when a fingerprint is recognized.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public FingerprintManager.AuthenticationCallback ()

Added in API level 23

Public Methods

public void onAuthenticationError (int errorCode, CharSequence errString)

Added in API level 23

Called when an unrecoverable error has been encountered and the operation is complete. No further callbacks will be made on this object.

Parameters
errorCode An integer identifying the error message
errString A human-readable error string that can be shown in UI

public void onAuthenticationFailed ()

Added in API level 23

Called when a fingerprint is valid but not recognized.

public void onAuthenticationHelp (int helpCode, CharSequence helpString)

Added in API level 23

Called when a recoverable error has been encountered during authentication. The help string is provided to give the user guidance for what went wrong, such as "Sensor dirty, please clean it."

Parameters
helpCode An integer identifying the error message
helpString A human-readable string that can be shown in UI

public void onAuthenticationSucceeded (FingerprintManager.AuthenticationResult result)

Added in API level 23

Called when a fingerprint is recognized.

Parameters
result An object containing authentication-related data