Если бы все могло зависеть от меня, вот как я мог бы справиться с этим (см. Комментарии между строк).Это только для форматирования номера телефона, предположим, что это региональный номер с максимум 10 цифрами:
phoneNumber.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
}
@Override
public void afterTextChanged(Editable s) {
/* Let me prepare a StringBuilder to hold all digits of the edit text */
StringBuilder digits = new StringBuilder();
/* this is the phone StringBuilder that will hold the phone number */
StringBuilder phone = new StringBuilder();
/* let's take all characters from the edit text */
char[] chars = phoneNumber.getText().toString().toCharArray();
/* a loop to extract all digits */
for (int x = 0; x < chars.length; x++) {
if (Character.isDigit(chars[x])) {
/* if its a digit append to digits string builder */
digits.append(chars[x]);
}
}
if (digits.toString().length() >=3) {
/* our phone formatting starts at the third character and starts with the country code*/
String countryCode = new String();
/* we build the country code */
countryCode += "(" + digits.toString().substring(0, 3) + ") ";
/** and we append it to phone string builder **/
phone.append(countryCode);
/** if digits are more than or just 6, that means we already have our state code/region code **/
if (digits.toString().length()>=6)
{
String regionCode=new String();
/** we build the state/region code **/
regionCode+=digits.toString().substring(3,6)+"-";
/** we append the region code to phone **/
phone.append(regionCode);
/** the phone number will not go over 12 digits if ten, set the limit to ten digits**/
if (digits.toString().length()>=10)
{
phone.append(digits.toString().substring(6,10));
}else
{
phone.append(digits.toString().substring(6));
}
}else
{
phone.append(digits.toString().substring(3));
}
/** remove the watcher so you can not capture the affectation you are going to make, to avoid infinite loop on text change **/
phoneNumber.removeTextChangedListener(this);
/** set the new text to the EditText **/
phoneNumber.setText(phone.toString());
/** bring the cursor to the end of input **/
phoneNumber.setSelection(phoneNumber.getText().toString().length());
/* bring back the watcher and go on listening to change events */
phoneNumber.addTextChangedListener(this);
} else {
return;
}
}
});
Этот код будет переформатировать номер телефона каждый раз, когда пользователь изменяет значение EditText.Я сам его проверил и он работает и не вылетает.Вы можете проверить.
РЕДАКТИРОВАТЬ: это код Java, но я думаю, вы можете легко переписать его в Kotlin.