wenwenwen888 / SearchDialog

仿bilibili搜索框效果(三句代码实现)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

搜索页打开的时候焦点不在edittext

justdoITlkq opened this issue · comments

搜索页打开的时候焦点不在edittext,这个时候输入无效,需要点击searchView的EditText才能正确获取焦点

@justdoITlkq
没有焦点的话可以尝试以下代码:

edittext.setFocusable(true);//设置输入框可聚集
edittext.setFocusableInTouchMode(true);//设置触摸聚焦
edittext.requestFocus();//请求焦点
edittext.findFocus();//获取焦点