使用setOnActionExpandListener
导致SearchView
不扩展。为什么?我该如何解决?
menu.findItem(R.id.action_search).setOnActionExpandListener(new MenuItem.OnActionExpandListener() {
@Override
public boolean onMenuItemActionExpand(MenuItem item) {
return false;
}
@Override
public boolean onMenuItemActionCollapse(MenuItem item) {
//TODO
return true;
}
});
最佳答案
尝试在onMenuItemActionExpand中返回true。根据OnActionExpandListener中的注释:
如果该项应扩展,则返回true;如果扩展应为false,则返回false
压抑。
关于android - setOnActionExpandListener导致searchview不展开,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30698888/