Не удаляются символы вставленные с помощью setText
/**
* GeSHi (C) 2004 - 2007 Nigel McNie, 2007 - 2008 Benny Baumann
* (http://qbnz.com/highlighter/ and http://geshi.org/)
*/
.java.geshi_code {font-family:monospace;}
.java.geshi_code .imp {font-weight: bold; color: red;}
.java.geshi_code .kw1 {color: #000000; font-weight: bold;}
.java.geshi_code .kw2 {color: #000066; font-weight: bold;}
.java.geshi_code .kw3 {color: #003399;}
.java.geshi_code .kw4 {color: #000066; font-weight: bold;}
.java.geshi_code .co1 {color: #666666; font-style: italic;}
.java.geshi_code .co2 {color: #006699;}
.java.geshi_code .co3 {color: #008000; font-style: italic; font-weight: bold;}
.java.geshi_code .coMULTI {color: #666666; font-style: italic;}
.java.geshi_code .es0 {color: #000099; font-weight: bold;}
.java.geshi_code .br0 {color: #009900;}
.java.geshi_code .sy0 {color: #339933;}
.java.geshi_code .st0 {color: #0000ff;}
.java.geshi_code .nu0 {color: #cc66cc;}
.java.geshi_code .me1 {color: #006633;}
.java.geshi_code .me2 {color: #006633;}
.java.geshi_code span.xtra { display:block; }
FormatNum.formatPhoneInput фомратирует номер телефона по маске: +7(xxx) xxx-xx-xx. Но проблема в том, что символы ()- не удаляются с помощью цифровой клавиатуры. Почему?
phoneField = (EditText) layout.findViewById(R.id.phoneField);
ChangedListener = new TextWatcher() {
public void onTextChanged(CharSequence s, int start, int before, int count) {
}
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
public void afterTextChanged(Editable s) {
String Phone = phoneField.getText().toString();
Phone = FormatNum.formatPhoneInput(Phone);
if ( !Phone.equals(phoneField.getText().toString()) ) {
phoneField.setText(Phone);
phoneField.setSelection(Phone.length());
}
}
};
phoneField.addTextChangedListener(ChangedListener);
ChangedListener = new TextWatcher() {
public void onTextChanged(CharSequence s, int start, int before, int count) {
}
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
public void afterTextChanged(Editable s) {
String Phone = phoneField.getText().toString();
Phone = FormatNum.formatPhoneInput(Phone);
if ( !Phone.equals(phoneField.getText().toString()) ) {
phoneField.setText(Phone);
phoneField.setSelection(Phone.length());
}
}
};
phoneField.addTextChangedListener(ChangedListener);
FormatNum.formatPhoneInput фомратирует номер телефона по маске: +7(xxx) xxx-xx-xx. Но проблема в том, что символы ()- не удаляются с помощью цифровой клавиатуры. Почему?