作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为操作栏搜索 View 使用 Android 兼容支持库。如何添加在输入内容后单击键盘上的搜索按钮时触发的事件?
到目前为止我有这个:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_users, menu);
MenuItem searchItem = menu.findItem(R.id.action_search);
SearchView searchView = (SearchView) MenuItemCompat.getActionView(searchItem);
return super.onCreateOptionsMenu(menu);
}
Google docs page似乎没有告诉我这个,它只显示了如何设置它......
到目前为止,我可以看到搜索图标,当我单击它时,它会显示 EditText
,我可以在其中输入内容,然后如果我单击键盘上的搜索按钮,则没有任何反应。然后我想触发一个可以获取该字符串的事件,这样我就可以用它做我想做的事。
有谁知道如何做到这一点?
最佳答案
你需要添加一个QueryTextListener
:
searchView.setOnQueryTextListener(new SearchView.OnQueryTextListener() {
@Override
public boolean onQueryTextSubmit(String query) {
// TODO : query is the text from the search view
// after you clicked search
return true;
}
@Override
public boolean onQueryTextChange(String newText) {
// TODO : newText is the text from the search view
// (event triggered every time the text changes)
return false;
}
});
关于android - 如何从 Android 支持库操作栏 SearchView 中检索文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21053971/
我是一名优秀的程序员,十分优秀!