美文网首页资料搜集Android资料库_Android系统调用
android设置软键盘搜索键以及监听搜索键点击事件

android设置软键盘搜索键以及监听搜索键点击事件

作者: 4ce1bc2e3207 | 来源:发表于2017-03-14 11:24 被阅读187次

如图所示,有时候为了布局美观,在搜索时没有搜索按钮,而是调用软件盘上的按钮。调用的实现只需要在XML在输入框中加入Android:imeOptions="actionSearch",另外,还要设置android:singleLine="true",保证点击不会换行,最后调用软键盘时,回车键就会显示搜索二字。

然后调用 OnEditorActionListener,不是OnKeyListener

?

et_search.setOnEditorActionListener(new TextView.OnEditorActionListener() {

@Override

publicboolean onEditorAction(TextView v, int actionId, KeyEvent event) {

if (actionId == EditorInfo.IME_ACTION_SEARCH){

isSearch = true;

page = 1;

MyUtils.hideSoftKeyboard(EnterShopActivity.this,v);

getData();

returntrue;

}

returnfalse;

}

});

et_search.setOnEditorActionListener(new TextView.OnEditorActionListener() {

@Override

public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {

if (actionId == EditorInfo.IME_ACTION_SEARCH){

isSearch = true;

page = 1;

MyUtils.hideSoftKeyboard(EnterShopActivity.this,v);

getData();

return true;

}

return false;

}

});

在androidMainfest.xml文件中在此Activity中写入

android:windowSoftInputMode="adjustPan"

可以防止软键盘会把原来的界面挤上去的问题

相关文章

网友评论

    本文标题:android设置软键盘搜索键以及监听搜索键点击事件

    本文链接:https://www.haomeiwen.com/subject/pkqqnttx.html