diff options
| -rw-r--r-- | packages/SystemUI/res-keyguard/layout/keyguard_password_view.xml | 1 | ||||
| -rw-r--r-- | packages/SystemUI/res-keyguard/values/strings.xml | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/packages/SystemUI/res-keyguard/layout/keyguard_password_view.xml b/packages/SystemUI/res-keyguard/layout/keyguard_password_view.xml index 9fdb00eebe10..11bd98f549ca 100644 --- a/packages/SystemUI/res-keyguard/layout/keyguard_password_view.xml +++ b/packages/SystemUI/res-keyguard/layout/keyguard_password_view.xml @@ -49,6 +49,7 @@ <EditText android:id="@+id/passwordEntry" android:layout_width="match_parent" android:layout_height="wrap_content" + android:contentDescription="@string/keyguard_accessibility_password" android:gravity="center_horizontal" android:singleLine="true" android:textStyle="normal" diff --git a/packages/SystemUI/res-keyguard/values/strings.xml b/packages/SystemUI/res-keyguard/values/strings.xml index ed63089f22dd..513d8488a0d4 100644 --- a/packages/SystemUI/res-keyguard/values/strings.xml +++ b/packages/SystemUI/res-keyguard/values/strings.xml @@ -120,6 +120,9 @@ <!-- Accessibility description of the PIN password view. [CHAR_LIMIT=none] --> <string name="keyguard_accessibility_pin_area">PIN area</string> + <!-- Accessibility description of the normal password view. [CHAR_LIMIT=none] --> + <string name="keyguard_accessibility_password">Device password</string> + <!-- Accessibility description of the SIM PIN password view. [CHAR_LIMIT=none] --> <string name="keyguard_accessibility_sim_pin_area">SIM PIN area</string> <!-- Accessibility description of the SIM PUK password view. [CHAR_LIMIT=none] --> |