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