码迷,mamicode.com
首页 > 移动开发 > 详细

android设置软键盘搜索键以及监听搜索键点击时发生两次事件的问题解决

时间:2017-08-09 10:07:15      阅读:391      评论:0      收藏:0      [点我收藏+]

标签:arc   keyevent   rac   height   enter   gravity   android   hid   etc   

技术分享

如图所看到的。有时候为了布局美观,在搜索时没有搜索button。而是调用软件盘上的button。调用的实现仅仅须要在XML在输入框中增加android:imeOptions="actionSearch"。调用软键盘时。回车键就会显示搜索二字。

然后调用 OnEditorActionListener,不是OnKeyListener

searchText.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);

//跳转activity  
   Intent intent = new Intent();
   intent.setClass(getActivity(), SearchResultActivity.class);
   startActivity(intent);

                     

                   return true;
                   }
               return false;
           }
});

在androidMainfest.xml文件里在此Activity中写入 android:windowSoftInputMode="adjustPan"能够防止软键盘会把原来的界面挤上去的问题


android设置软键盘搜索键以及监听搜索键点击时发生两次事件的问题解决

标签:arc   keyevent   rac   height   enter   gravity   android   hid   etc   

原文地址:http://www.cnblogs.com/yfceshi/p/7323384.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!