Merge "Fix password obscuring in TextView accessibility node"
This commit is contained in:
committed by
Android (Google) Code Review
commit
d6a91b0bb6
@@ -8194,7 +8194,7 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener
|
||||
final boolean isPassword = hasPasswordTransformationMethod();
|
||||
info.setPassword(isPassword);
|
||||
|
||||
if (!isPassword) {
|
||||
if (!isPassword || shouldSpeakPasswordsForAccessibility()) {
|
||||
info.setText(getTextForAccessibility());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user