java – 检测键盘搜索按钮
作者:互联网
我更改android软键盘以显示搜索图标而不是Enter图标.我的问题是:如何检测用户点击该搜索按钮?
解决方法:
在edittext中,您可能已使用输入法选项进行搜索.
<EditText
android:imeOptions="actionSearch"
android:inputType="text"/>
现在使用EditText上的Editor监听器来处理搜索事件,如下所示:
editText.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if (actionId == EditorInfo.IME_ACTION_SEARCH) {
// Your piece of code on keyboard search click
return true;
}
return false;
}
});
标签:android,java,android-edittext,android-softkeyboard 来源: https://codeday.me/bug/20191007/1868952.html