You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mBinding.searchView.doOnLayout { _ ->
// wait for layout to be finished, otherwise showSearch() will not work
mBinding.searchView.showSearch()
// text needs to be set after showSearch() is called!
mBinding.searchView.setQuery(voucherSearchString, false)
}
If you want to enable searchView.setKeepQuery(true) you can also set the query value before opening the searchView:
with .setKeepQuery(true) add persistence last query, but is there any way to initialize the text to a specific value?
The text was updated successfully, but these errors were encountered: