【Android——输入法搜索】落花踏尽游何处,笑入胡姬酒肆中。这篇文章主要讲述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-PopupWindow
- virtualenv 和 virtualenvwrapper 使用教程
- goreplay 镜像nginx web app流量
- androidrecyclerview+GalleryLayoutManager 实现广告画廊效果
- Flutter - 给App增加启动屏幕(Splash Screen)并且设置背景颜色
- spring BeanFactory和ApplicatContext
- Mac通过wifi连接 Android设备
- Windows10系统下wsappx占用CPU资源过高(wsappx是什么?如何关闭wsappx进程?)
- appJar 界面效果