我有一个带有imeoptions
as的 Edittext actiongo
。当按下软键盘输入按钮时我触发了我的事件。
mModelId.setOnEditorActionListener(new OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
boolean handled = false;
// if (event.getKeyCode() == KeyEvent.KEYCODE_ENTER) {
if (actionId == EditorInfo.IME_ACTION_GO) {
id = mModelId.getText().toString();
System.out.println("Model id in Edittext:-"+ id);
Toast.makeText(getActivity(), "You entered "+id, Toast.LENGTH_LONG).show();
System.out.println("Before Call Volley");
callVolley();
handled = true;
}
return handled;
}
});
一切正常,但是当我添加 actionlabel 以输入键时,事件没有触发。 mModelId.setImeActionLabel("Search Model", KeyEvent.KEYCODE_ENTER);
. 可能是什么问题?