您的位置:首页 > 移动开发 > Android开发

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

2015-01-22 10:38 639 查看
在输入框中加入android:imeOptions="actionSearch",调用软键盘时,回车键就会显示搜索二字。

我想在点击搜索时,跳转到下一个页面,但是调用setOnKeyListener,每次都执行两次。最后上网看到别人的文章,解决了问题,解决方法是调用setOnEditorActionListener而不是用setOnKeyListener来监听点击搜索按钮。

代码如下(在fragment中写把activity.this 换成getActivity()就行了):

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(

activity.this

.getCurrentFocus()

.getWindowToken(),

InputMethodManager.HIDE_NOT_ALWAYS);

//跳转activity

Intent intent = new Intent();

intent.setClass(getActivity(), SearchResultActivity.class);

startActivity(intent);

// 将查询的数据插入数据库

mDbHelper.insert_search_history(searchText.getText().toString(), getStringDate());

return true;

}

return false;

}

});
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐