Methods Summary |
---|
public void | onAcquired(int acquiredInfo)Fingerprint touch detected, but not processed yet. Clients will use this message to
determine a good or bad scan before the fingerprint is processed. This is meant for the
client to provide feedback about the scan or alert the user that recognition is to follow.
|
public void | onEnrollResult(int fingerprintId, int remaining)Fingerprint enrollment progress update. Enrollment is considered complete if
remaining hits 0 without {@link #onError(int)} being called.
|
public void | onError(int error)An error was detected during scan or enrollment. One of
{@link FingerprintManager#FINGERPRINT_ERROR_HW_UNAVAILABLE},
{@link FingerprintManager#FINGERPRINT_ERROR_UNABLE_TO_PROCESS} or
{@link FingerprintManager#FINGERPRINT_ERROR_TIMEOUT}
{@link FingerprintManager#FINGERPRINT_ERROR_NO_SPACE}
|
public void | onProcessed(int fingerprintId)Fingerprint has been detected and processed. A non-zero return indicates a valid
fingerprint was detected.
|
public void | onRemoved(int fingerprintId)The given fingerprint template was successfully removed by the driver.
See {@link FingerprintManager#remove(int)}
|