Skip to content

Instantly share code, notes, and snippets.

@SamueldaCostaAraujoNunes
Created August 2, 2021 22:44
Show Gist options
  • Save SamueldaCostaAraujoNunes/45ceef7a062928d4b088b93c91984242 to your computer and use it in GitHub Desktop.
Save SamueldaCostaAraujoNunes/45ceef7a062928d4b088b93c91984242 to your computer and use it in GitHub Desktop.
override fun onCreateOptionsMenu(menu: Menu?): Boolean {
menuInflater.inflate(R.menu.menu_main_activity, menu)
val item = menu?.findItem(R.id.search)
val searchView = item?.actionView as SearchView
searchView.setOnQueryTextListener(viewModel.onQueryTextListener)
return super.onCreateOptionsMenu(menu)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment