I'm making a dictionary. I want when I press "Enter", the EditText doesn't insert new line and do search instead. How to do it?
I tried OnKey, OnKeyDown, OnEditorAction but it doesn't work. When I press "Enter", EditText inserts a new line.
public boolean onEditorAction(final TextView v, final int actionId, final KeyEvent event) {
System.out.println("OnEditor.");
if (actionId == EditorInfo.IME_ACTION_SEARCH ||
actionId == EditorInfo.IME_ACTION_DONE ||
event.getAction() == KeyEvent.ACTION_DOWN &&
event.getKeyCode() == KeyEvent.KEYCODE_ENTER) {
System.out.println("OnEditor.");
}
return true;
}
Update: imeOption doesn't works.