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 开发者_如何学Pythonyou in advance...!
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.
精彩评论