Only speak key label after checking for password obscure flag.
Bug: 6523222 Change-Id: Ic737c4ce135d869a3422b1ebbea0a845c71b1699
This commit is contained in:
parent
282adf7330
commit
cc38306d4f
1 changed files with 2 additions and 3 deletions
|
@ -111,9 +111,6 @@ public class KeyCodeDescriptionMapper {
|
||||||
if (mKeyLabelMap.containsKey(label)) {
|
if (mKeyLabelMap.containsKey(label)) {
|
||||||
return context.getString(mKeyLabelMap.get(label));
|
return context.getString(mKeyLabelMap.get(label));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Otherwise, return the label.
|
|
||||||
return key.mLabel;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Just attempt to speak the description.
|
// Just attempt to speak the description.
|
||||||
|
@ -229,6 +226,8 @@ public class KeyCodeDescriptionMapper {
|
||||||
return context.getString(mKeyCodeMap.get(code));
|
return context.getString(mKeyCodeMap.get(code));
|
||||||
} else if (isDefinedNonCtrl) {
|
} else if (isDefinedNonCtrl) {
|
||||||
return Character.toString((char) code);
|
return Character.toString((char) code);
|
||||||
|
} else if (!TextUtils.isEmpty(key.mLabel)) {
|
||||||
|
return key.mLabel;
|
||||||
} else {
|
} else {
|
||||||
return context.getString(R.string.spoken_description_unknown, code);
|
return context.getString(R.string.spoken_description_unknown, code);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue