Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I can't figure this out. Some apps have a EditText (textbox) which, when you touch it and it brings up the on-screen keyboard, the keyboard has a "Search" button instead of an enter key.

I want to implement this. How can I implement that Search button and detect press of the Search button?

Edit: found how to implement the Search button; in XML, android:imeOptions="actionSearch" or in Java, EditTextSample.setImeOptions(EditorInfo.IME_ACTION_SEARCH);. But how do I handle the user pressing that Search button? Does it have something to do with android:imeActionId?

share|improve this question
An excellent question and an excellent answer. – jasonhudgins Jun 23 '12 at 0:22
Note that imeOptions might not work on some devices. See this and this. – Ermolai Mar 15 at 8:31

1 Answer

up vote 145 down vote accepted

In the layout set your input method options to search.

<EditText android:imeOptions="actionSearch" />

In the java add the editor action listener.

editText.setOnEditorActionListener(new TextView.OnEditorActionListener() {
    @Override
    public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
        if (actionId == EditorInfo.IME_ACTION_SEARCH) {
            performSearch();
            return true;
        }
        return false;
    }
});
share|improve this answer
That was just what I needed. Thanks! – Ricket Jul 8 '10 at 16:44
what if we want to get the keys on which the user clicks, like a,b,c? – ozmank Nov 15 '11 at 13:36
Thank you..this is what exactly i need.. – deepa Nov 29 '11 at 12:50
20  
On os 2.3.6 it doesn't work until I put android:inputType="text" attribute. – doreamon Dec 30 '11 at 15:03
9  
android:inputType="text" was also required for me on Android 2.3.5 and 4.0.4 – ccyrille Jun 14 '12 at 17:22
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.