Assigned
Status Update
Comments
ba...@intune.corp-partner.google.com <ba...@intune.corp-partner.google.com> #2
I face with the same problem. I have different pageMargin in landscape and portrait and when viewpager is scrolled for the more than first position, after rotating device it is shifted.
I beleive the problem is inside onSizeChanged that is called after onConfigurationChanged, it has following code:
if (w != oldw) {
recomputeScrollPosition(w, oldw, mPageMargin, mPageMargin);
}
w always not equals oldw when changing orientation, so recomputeScrollPosition is called, but whit the same values for margin and oldMargin.
This should be fixed.
I beleive the problem is inside onSizeChanged that is called after onConfigurationChanged, it has following code:
if (w != oldw) {
recomputeScrollPosition(w, oldw, mPageMargin, mPageMargin);
}
w always not equals oldw when changing orientation, so recomputeScrollPosition is called, but whit the same values for margin and oldMargin.
This should be fixed.
su...@google.com <su...@google.com>
ba...@intune.corp-partner.google.com <ba...@intune.corp-partner.google.com> #3
[Comment deleted]
Description
Steps to reproduce the problem
Exact steps unknown, occurs intermittently. Involves registering a fingerprint on the device, and attempting to authenticate with that fingerprint in an app via
BiometricPrompt.authenticate()
.BiometricPrompt.AuthenticationCallback
receivedonAuthenticationError
~100ms afterBiometricPrompt.authenticate()
was called witherrString
"Fingerprint operation canceled by user."Details
Logs
bugreport:https://drive.google.com/file/d/1qr7ZvjqtV2eITS1vBEywFAigHC77H1NA/view?usp=sharing (shared with android-bugreport@google.com )