Reputation: 6602
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
Reputation: 30168
Try setting the imeOptions attribute in the EditText:
imeOptions
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