今天的任务就是遇到这么个问题,需要在点击EditText的时候弹出带搜索的输入法,于是研究了一下EditText的属性,
发现只需要一句话便可以实现,在xml文件中的EditText控件中加入android:imeOptions="actionSearch" 即可。
另外监听要使用onEditorActionListener
search_edt.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if(actionId == EditorInfo.IME_ACTION_SEARCH){
//TODO 搜索请求
}
return false;
}
});