当我在 multiautocompletetextview 中从键盘输入双倍空格时,我想添加逗号。我在谷歌搜索了很多东西。但达不到我的目的。我想用逗号替换用户输入的双空格。
所以很明显,我必须在 addtextwatcher listener 的 ontextChange() 或 OnAfterTextChanged() 中写一些逻辑。但是我没有在添加 2 个空格之后发生事件。
从列表中选择单词时,我已经使用了逗号标记器。但是当用户使用键盘输入双空格时,我想添加逗号。
提前致谢
当我在 multiautocompletetextview 中从键盘输入双倍空格时,我想添加逗号。我在谷歌搜索了很多东西。但达不到我的目的。我想用逗号替换用户输入的双空格。
所以很明显,我必须在 addtextwatcher listener 的 ontextChange() 或 OnAfterTextChanged() 中写一些逻辑。但是我没有在添加 2 个空格之后发生事件。
从列表中选择单词时,我已经使用了逗号标记器。但是当用户使用键盘输入双空格时,我想添加逗号。
提前致谢
试试这样,我没试过这段代码
boolean userPressedKey = false ;
int spaceCount = 0;
yourEditText.addTextChangedListener(new TextWatcher() {
public void afterTextChanged(Editable s) {
userPressedKey = false ;
}
public void beforeTextChanged(CharSequence s, int start, int count, int after) {}
public void onTextChanged(CharSequence s, int start, int before, int count) {
userPressedKey = true;
});
public boolean onKeyDown(int keyCode, KeyEvent event) {
if (userPressedKey) {
if (keyCode == KeyEvent.KEYCODE_SPACE) {
spaceCount ++;
if(spaceCount == 2){
//append comma to the edittext here
Toast.makeText(MainActivity.this, "White space is clicked twice", Toast.LENGTH_LONG).show();
}
return true;
}else{
spaceCount=0;
}
}
super.onKeyDown(keyCode, event);
}
我可以为您提供的最简单的解决方案是使用String.replace()
,这是帮助您的小代码片段
@Override
protected void onCreate(Bundle savedInstanceState) {
...
edt.addTextChangedListener(textWatcher);
}
以及TextWatcher
你要设置的EditText
TextWatcher textWatcher = new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {
}
@Override
public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
edt.removeTextChangedListener(textWatcher);
String text = edt.getText().toString();
text = text.replace(" ", ",");
edt.setText(text);
edt.setSelection(text.length());
edt.addTextChangedListener(textWatcher);
}
@Override
public void afterTextChanged(Editable editable) {
}
};