我对Android开发很陌生。我试图在将空格输入EditText
元素时检测空格,然后立即向EditText
元素添加换行符。基本上,尝试用“输入”键替换空格键。我已经很接近了,因为我在输入到 EditText 元素时设法检测到“空格”,但是在检测到空格后,我正忙于将“输入”键事件分派到EditText
元素中。任何帮助将不胜感激。我觉得我正处于答案的风口浪尖,我只需要在正确的方向上稍微推动一下。
public void addInputWordListener(){
inputWord.addTextChangedListener(new TextWatcher() {
public void afterTextChanged(Editable s) {
sStr = s.toString();
if(sStr.equals("")){
topView.setTextColor(Color.WHITE);
return;
}
if (sStr.endsWith(" ")){ //space found!
token = s.toString().trim();
if (token.equalsIgnoreCase(topView.getText().toString())){
inputWord.dispatchKeyEvent(KeyEvent.KEYCODE_ENTER); //doesnt work??
topView.setText(midView.getText());
midView.setText(botView.getText());
botView.setText(MainMenu.we.nextWord());
MainMenu.user.totalWords++;
}else{
topView.setTextColor(Color.RED);
MainMenu.user.totalWords++;
MainMenu.user.numErrors++;
}
}
}
public void beforeTextChanged(CharSequence s, int start, int count, int after) {}
public void onTextChanged(CharSequence s, int start, int before, int count) {}
});
}