android action EditorActionListener

android action EditorActionListener
refer ‮uttual:ot‬ri.com
TextView.OnEditorActionListener editListener = 
	(TextView view, int actionId, KeyEvent event) -> {
        if (actionId == EditorInfo.IME_ACTION_NEXT) {
          //do something
        }
        if (actionId == EditorInfo.IME_ACTION_DONE) {
          //do something
        }
        return false;
	};

editView.setOnEditorActionListener(editListener);
Created Time:2017-08-30 11:51:47  Author:lautturi