Skip to content

Instantly share code, notes, and snippets.

@yashprakash13
Last active August 15, 2019 09:27
Show Gist options
  • Save yashprakash13/6348ca800e312a908f516a3609a7948c to your computer and use it in GitHub Desktop.
Save yashprakash13/6348ca800e312a908f516a3609a7948c to your computer and use it in GitHub Desktop.
getItemsFromDb
private fun getItemsFromDb(searchText: String) {
var searchText = searchText
searchText = "%$searchText%"
myViewModel.searchForItems(desc = searchText).observe(this@MainActivity, Observer { list ->
list?.let {
Log.e("List = ", list.toString())
}
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment