我在我的应用程序中使用 searchview(没有操作栏)。查询文本提交后如何折叠搜索视图?
我有这些听众;
@Override
public boolean onQueryTextSubmit(String query) {
InputMethodManager imm = (InputMethodManager)thisFr.getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(globalSearch.getWindowToken(), 0);
return false;
}
@Override
public boolean onQueryTextChange(String newText) {
// TODO Auto-generated method stub
return false;
}
我不使用 ActionBar 所以我没有像 collapseActionView() 这样的功能。
等待帮助
谢谢