Fix tts span on Editable

Make sure we clear any previously set TTS spans
before calling ttsSpanAsPhoneNumber.

Bug: 237511525
Change-Id: I89a4b190d9b8ebeeb19d0e693d1b1364b1ac9763
Test: on device test of blocked numbers with Talkback enabled
This commit is contained in:
Chinmay Dhodapkar
2022-07-07 20:27:17 +00:00
parent ae9ad2d4fa
commit 8d71635489

View File

@@ -21,6 +21,7 @@ import android.os.Build;
import android.text.Editable;
import android.text.Selection;
import android.text.TextWatcher;
import android.text.style.TtsSpan;
import com.android.i18n.phonenumbers.AsYouTypeFormatter;
import com.android.i18n.phonenumbers.PhoneNumberUtil;
@@ -119,6 +120,13 @@ public class PhoneNumberFormattingTextWatcher implements TextWatcher {
}
mSelfChange = false;
}
//remove previous TTS spans
TtsSpan[] ttsSpans = s.getSpans(0, s.length(), TtsSpan.class);
for (TtsSpan ttsSpan : ttsSpans) {
s.removeSpan(ttsSpan);
}
PhoneNumberUtils.ttsSpanAsPhoneNumber(s, 0, s.length());
}