不推荐使用MenuItemCompat.setOnActionExpandListener

时间:2018-02-26 13:05:15

标签: android searchview deprecated

如果搜索视图是打开的,我有一些设置布尔值的代码。

MenuItemCompat.setOnActionExpandListener(action_search, new MenuItemCompat.OnActionExpandListener() {
            @Override
            public boolean onMenuItemActionExpand(MenuItem item){
                isSearch = true;
                return true;
            }
            @Override
            public boolean onMenuItemActionCollapse(MenuItem item){
                isSearch = false;
                return true;
            }
        });

有效。我对它的反应方式感到满意。但是,它显示为已弃用,setOnActionExpandListener将与警告一起划掉

  

android.support.v4.view.MenuItemCompat.setOnActionExpandListener已弃用

建议?

0 个答案:

没有答案