Android Edittext 软键盘输入法的回车键设置成搜索按钮并监听点击事件

很多App中都有搜索功能,比如微信中的搜索好友,你会发现在页面中是没有搜索按钮的,而是软键盘的回车键变成了搜索按钮。这样设计其实挺好的,节省了页面空间,而且用户输入内容后直接在软件盘上单击搜索而无需再返回页面点击搜索按钮。

不说废话了,直接上代码:

首先先设置回车键为搜索按钮,记得 android:singleLine=”true”这句必不可少,否则无法生效

1
2
3
4
5
6
<EditText
android:id="@+id/edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:imeOptions="actionSearch"
android:singleLine="true"/>

Click and drag to move

然后设置回车键的点击事件监听

1
2
3
4
5
6
7
8
9
10
11
12
EditText editText = findViewById(R.id.edit_text);
editText.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if (actionId == EditorInfo.IME_ACTION_SEARCH) {
String keyword = v.getText().toString().trim();
Toast.makeText(MainActivity.this, keyword, Toast.LENGTH_SHORT).show();
return true;
}
return false;
}
});

Click and drag to move