在我的应用中,用户必须使用以下格式在 EditText
字段中输入电话号码:
1(515)555-5555
我不希望用户在输入数字时键入“(”、“)”或“-”;我希望自动添加这些字符。
例如,假设用户键入 1
-- 应该自动添加“1”后面的括号,以便显示“1(”。我希望有类似的功能同时删除。
我曾尝试在onTextWatcher
接口(interface)的afterTextChanged
方法中设置文本,但不起作用;相反,它会导致错误。任何帮助将不胜感激。
你可以试试
editTextPhoneNumber.addTextChangedListener(new PhoneNumberFormattingTextWatcher());
检查 PhoneNumnerFormattingTextWatxher
如果您想要自己实现 TextWatcher,那么您可以使用以下方法:
import android.telephony.PhoneNumberFormattingTextWatcher;
import android.text.Editable;
/**
* Set this TextWatcher to EditText for Phone number
* formatting.
*
* Along with this EditText should have
*
* inputType= phone
*
* maxLength=14
*/
public class MyPhoneTextWatcher extends PhoneNumberFormattingTextWatcher {
private EditText editText;
/**
*
* @param EditText
* to handle other events
*/
public MyPhoneTextWatcher(EditText editText) {
// TODO Auto-generated constructor stub
this.editText = editText;
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
// TODO Auto-generated method stub
super.onTextChanged(s, start, before, count);
//--- write your code here
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
// TODO Auto-generated method stub
super.beforeTextChanged(s, start, count, after);
}
@Override
public synchronized void afterTextChanged(Editable s) {
// TODO Auto-generated method stub
super.afterTextChanged(s);
}
}
我是一名优秀的程序员,十分优秀!