how to change android SearchView text

前端 未结 5 2239

Is there a setText() method for SearchView or something like that? I try to set the search text in the searchView like this but there is no method for like this.

<         


        
5条回答
  •  [愿得一人]
    2020-12-13 01:55

    After wondering and trying I found out that there is a method in the API named setQuery() which you set the searchView text and you may choose to submit the search or not using the boolean parameter.

    searchView.setQuery(searchToken, false);
    

提交回复
热议问题