gpt4 book ai didi

java - Android edittext限制输入的字符

转载 作者:行者123 更新时间:2023-11-29 05:36:55 26 4
gpt4 key购买 nike

我有一个允许用户输入 6 个字符的编辑文本,它会自动在字符 3 和 4 之间添加破折号。

我想限制用户在编辑文本中手动输入破折号或任何其他特殊字符,我在下面做了这个:

android:digits="abcdefghijklmnopqrstuvwxyz1234567890"

这行得通,但是当我通过 textchange 监听器手动添加破折号时,它当然不会添加它。

所以我在上面的限制上加了破折号:

android:digits="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);
}

}

最佳答案

添加keyListener

edtxt.setKeyListener(new AlphaKeyListner());

public class AlphaKeyListner extends NumberKeyListener
{
@Override
protected char[] getAcceptedChars()
{
return new char [] {
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j',
'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't',
'u', 'v', 'w', 'x', 'y', 'z',
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J',
'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T',
'U', 'V', 'W', 'X', 'Y', 'Z',
'1','2','3','4','5','6','7','8','9','0'};
}

@Override
public void clearMetaKeyState(View view, Editable content, int states)
{

}

@Override
public int getInputType()
{
return InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD;
}
}

关于java - Android edittext限制输入的字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19178480/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com