Android Settings soft keyboard search key and listen to the search button click on the issue occurred two times the problem solved

Source: Internet
Author: User

, sometimes in order to be beautiful, when searching without a search button, instead of invoking the button on the software disk. The implementation of the call only needs to add android:imeoptions= "Actionsearch" in the XML input box, and when the soft keyboard is called, the return key will display the search word.

Then call Oneditoractionlistener, not onkeylistener .

Searchtext.setoneditoractionlistener (New Oneditoractionlistener () {@Overridepublic Boolean oneditoraction (TextView V, int ActionId, keyevent event) {if (ActionId ==editorinfo.ime_action_search) {//Hide keyboard First ((Inputmethodmanager) Searchtext.getcontext (). Getsystemservice (Context.input_method_service)). Hidesoftinputfromwindow (GetActivity (). Getcurrentfocus (). Getwindowtoken (), inputmethodmanager.hide_not_always);//Jump activity     Intent Intent = new Intent ();   Intent.setclass (Getactivity (), searchresultactivity.class);   StartActivity (intent);                                        return true;                   }               return false;           }});

Write android:windowsoftinputmode= "Adjustpan" in this activity in the Androidmainfest.xml file to prevent the soft keyboard from squeezing the original interface.


Android Set the soft keyboard search key and listen to the search key clicked when the problem of two incidents resolved

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.