我有一个编辑文本,允许用户输入 6 个字符,它会自动在字符 3 和 4 之间添加一个破折号。
我想限制用户在编辑文本上手动输入破折号或任何其他特殊字符,我在下面做了这个:
机器人:数字=“abcdefghijklmnopqrstuvwxyz1234567890”
这可行,但是当我通过 textchange 侦听器手动添加破折号时,它当然不会添加它。
所以我在上述限制上添加了破折号:
机器人:数字=“abcdefghijklmnopqrstuvwxyz1234567890-”
当然,用户现在可以输入破折号了!
如何限制用户输入破折号,同时允许以编程方式将其添加到editText?
文本更改侦听器上的当前代码
@Override
public void onTextChanged(CharSequence text, int start, int before,
int count) {
// add dash when user enters 4th character
if (text.length() == 4 && text.length() > before) {
text = (text.subSequence(0, 3) + "-" + text.charAt(count - 1));
int pos = text.length();
editText.setText(text);
editText.setSelection(pos);
} else if (text.length() == 4 && text.length() < before) {
// delete dash when user presses back
editText.setText(text.subSequence(0, 3));
editText.setSelection(text.length() - 1);
}
}