我希望editText
在该行之后将 的值设置为 null:new nwcomm.execute(cmd,cmd1)
这样我就可以在我在键盘上按下它们时发送键。我试过keyboard.setText(null);
了,但它不起作用。我该怎么办?
keyboard.addTextChangedListener(new TextWatcher() {
public void onTextChanged(CharSequence s, int start, int before, int count) {
// TODO Auto-generated method stub
String stt="key_";
String key=keyboard.getText().toString();
String cmd=stt+key;
new nwcomm().execute(cmd,cmd1);
}
}