有没有办法强制 Smart Lock 成功横幅在有多个请求的凭据时显示?
IE,
Credentials.getClient(context)
.request(credentialRequest)
.addOnCompleteListener { task ->
if(task.successful) {
logInWithCredential(...)
return;
// for this part, blue banner is shown as normal
}
if(task.exception == CommonStatusCodes.RESOLUTION_REQUIRED) {
// request user to choose credential
// after a credential is chosen, blue banner is not shown
}
}