Noby
Noby

Reputation: 6602

android : How to change name of the Enter key to "Search" with respect to particular EditText...?

I want to display 'Search' in place of 'Done' or 'Next' or symbol. in the soft keyboard displayed when we click on any edit text....?

Thank you in advance...!

Upvotes: 2

Views: 1733

Answers (1)

dmon
dmon

Reputation: 30168

Try setting the imeOptions attribute in the EditText:

android:imeOptions="actionSearch"

See the docs for other options. Note that not all keyboards support these, so it will be a "best effort" approach.

Upvotes: 5

Related Questions