Android how to focus ActionBar searchView

后端 未结 9 1294
野性不改
野性不改 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条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-23 09:56

    searchView.setQuery("typeAnything",true);
    searchView.setFocusable(true);
    

    will do the trick.

提交回复
热议问题