美文网首页
EditText在手机弹出的软键盘中,将回车键变为搜索键和点击搜

EditText在手机弹出的软键盘中,将回车键变为搜索键和点击搜

作者: sun_wenming | 来源:发表于2017-04-05 12:00 被阅读0次

在手机弹出的软键盘中,回车键变为搜索键

1、修改EditText属性:

<EditText  
  android:id="@+id/et_search"  
  android:layout_width="100dp"  
  android:layout_height="25dp"  
  android:textSize="12sp"  
  android:hint="请输入关键词"  
  android:imeOptions="actionSearch"  
  android:singleLine="true"/>  
  
  android:imeOption="actionSearch"的作用是将回车两字改为搜索,
android:singleLine="true"的作用是防止搜索框换行。

2、 点击时执行两次监听事件的问题:


每次点击软键盘的搜索键都会执行两次搜索方法,
没有加event.getAction() == KeyEvent.ACTION_DOWN这句判断。
修改代码如下:
OnKeyListener事件:
et_search=(EditText)findViewById(R.id.et_search);  
et_search.setOnKeyListener(new View.OnKeyListener() {  
   @Override  
   public boolean onKey(View v, int keyCode, KeyEvent event) {  
       //是否是回车键  
       if (keyCode == KeyEvent.KEYCODE_ENTER && event.getAction() == KeyEvent.ACTION_DOWN) {  
           //隐藏键盘  
((InputMethodManager) getSystemService(INPUT_METHOD_SERVICE))  
 .hideSoftInputFromWindow(SearchActivity.this.getCurrentFocus()  
 .getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);  
           //搜索  
           search();  
       }  
       return false;  
   }  
});  

相关文章

网友评论

      本文标题:EditText在手机弹出的软键盘中,将回车键变为搜索键和点击搜

      本文链接:https://www.haomeiwen.com/subject/sebtattx.html