Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android: Can't figure how to use setImeActionLabel

What I want to do is change the default "Done" label that appears in the virtual keyboard. Here's what I've tried without any luck:

mSearchInput.setImeOptions(EditorInfo.IME_ACTION_DONE); mSearchInput.setImeActionLabel(getString(R.string.search_action_label), EditorInfo.IME_ACTION_DONE); 

I am able, however, to handle a click on that button, with this:

mSearchInput.setOnEditorActionListener(new TextView.OnEditorActionListener() {     @Override     public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {         if (actionId == EditorInfo.IME_ACTION_DONE) {             performSearch();             return true;         }         return false;     } }); 

I'm clueless as to how I can change the label on that button at the moment.

like image 885
Felix Avatar asked Oct 08 '09 14:10

Felix


1 Answers

The imeActionLabel sets the label for the button that appears on the top right on full screen IME mode (i.e., when your phone is in landscape). If you want to change the button to the bottom right of the keyboard, you can pass certain flags to imeOptions.

As far as I know, for that button you're limited to a certain set of actions (see here for a full list of supported flags), but since you seem to want a search button, all you have to do is to slightly adjust your first line and use IME_ACTION_SEARCH:

mSearchInput.setImeOptions(EditorInfo.IME_ACTION_SEARCH); 

Mind you, the exact appearance of that button will depend on the input method. The default Android keyboard shows a magnifier for the search flag, while the Touch Input (HTC's keyboard) seems completely unaware of that flag, still showing a return button.

like image 166
mernen Avatar answered Sep 22 '22 15:09

mernen