a11y fix: read emergency numbers as digits, not numbers.

Instead of reading as one hundred and ten, it should read as one-one-o.

Also make the number override dialog text input box a little bigger

Fix: 175517632
Fix: 175514672
Test: robotests
Change-Id: I7e3e823792f885004868ede790fc414a3fa66f01
This commit is contained in:
Fan Zhang
2020-12-15 12:15:05 -08:00
parent 04322e2202
commit 8e154d094f
3 changed files with 16 additions and 4 deletions

View File

@@ -90,7 +90,7 @@ public class EmergencyGestureNumberOverridePreferenceControllerTest {
mController.updateState(preference);
assertThat(preference.getSummary()).isEqualTo(
assertThat(preference.getSummary().toString()).isEqualTo(
mContext.getString(R.string.emergency_gesture_call_for_help_summary, "123"));
}