Added in API level 3
  
  
  
  
TextView.OnEditorActionListener
  public
  static
  
  
  interface
  TextView.OnEditorActionListener
  
  
  
| android.widget.TextView.OnEditorActionListener | 
Interface definition for a callback to be invoked when an action is performed on the editor.
Summary
| Public methods | |
|---|---|
| 
        abstract
        
        
        
        
        boolean | 
      onEditorAction(TextView v, int actionId, KeyEvent event)
      Called when an action is being performed. | 
Public methods
onEditorAction
    Added in API level 3
  
      
  
    public abstract boolean onEditorAction (TextView v, int actionId, KeyEvent event)
Called when an action is being performed.
| Parameters | |
|---|---|
| v | TextView: The view that was clicked. | 
| actionId | int: Identifier of the action.  This will be either the
 identifier you supplied, orEditorInfo.IME_NULLif being called due to the enter key
 being pressed. Starting from Android 14, the action identifier will
 also be included when triggered by an enter key if the input is
 constrained to a single line. | 
| event | KeyEvent: If triggered by an enter key, this is the event;
 otherwise, this is null. | 
| Returns | |
|---|---|
| boolean | Return true if you have consumed the action, else false. | 
