Android——输入法搜索
Posted 听风就是雨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android——输入法搜索相关的知识,希望对你有一定的参考价值。
android搜索框输入内容点击键盘的搜索按钮进行搜索
1、在布局XML中的EditView 加入android:imeOptions="actionSearch"
2、监听调用
EditView.setOnEditorActionListener(new OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if(actionId ==EditorInfo.IME_ACTION_SEARCH){
// 先隐藏键盘
((InputMethodManager) searchText.getContext().getSystemService(Context.INPUT_METHOD_SERVICE))
.hideSoftInputFromWindow(
getActivity()
.getCurrentFocus()
.getWindowToken(),
InputMethodManager.HIDE_NOT_ALWAYS);
//实现自己的搜索逻辑
return true;
}
return false;
}
});
以上是关于Android——输入法搜索的主要内容,如果未能解决你的问题,请参考以下文章