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

What you see. Sometimes there is no search button when searching for a beautiful layout. Instead, the button on the software disk is called. The implementation of the call only needs to add android:imeoptions= "Actionsearch" to the XML in the input box. When a soft keyboard is called. The ENTER 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;           }});

In the Androidmainfest.xml file in this activity write android:windowsoftinputmode= "Adjustpan" can prevent the soft keyboard will be the original interface to squeeze up the problem


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

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.