Triggering event on click of a particular button from the default soft Keyboard

Updated 22 April 2017

Save

Many a times we just want that a event should trigger on click of a particular button(like Enter button, Search Button, Done button) from the default soft keyboard of android.

Implementing this is very easy.

All you need to do is search the id of the button on which you want to perform your particular action and simply follow the below steps :

  1.  Get the instance of your EditText from your view.
  2. Add OnEditorActionListener on your EditText.
  3. Implement the logic in the onEditorAction  method of the OnEditorActionListener by first comparing the id of your button.

And it is done, lets have a look at the code for the same , I am sharing the code for Done button of the Soft keyboard. You can change the same as per your need.

CODE :

NOTE : For seeing the id of other buttons, you can open the EditorInfo class of the package   android.view.inputmethod or you can have a look at :  https://developer.android.com/reference/android/view/inputmethod/EditorInfo.html

author
. . .

Leave a Comment

Your email address will not be published. Required fields are marked*


Be the first to comment.

Start a Project


    Message Sent!

    If you have more details or questions, you can reply to the received confirmation email.

    Back to Home