Android how to focus ActionBar searchView

后端 未结 9 1291
野性不改
野性不改 2020-12-23 09:19

Hello i need to put some text inside the searchView and focus/expand the searchView widget.

this is what i tried but it doesn\'t work

@Override
publi         


        
9条回答
  •  猫巷女王i
    2020-12-23 10:08

    public void setIconified(boolean iconify) {
        if (iconify) {
            onCloseClicked();
        } else {
            onSearchClicked();
        }
    }
    

    this is code in SearchView

    setIconified() is worked for me

提交回复
热议问题