Skip to content

Instantly share code, notes, and snippets.

@abdurahmanadilovic
Created November 30, 2017 19:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abdurahmanadilovic/5d2b59a2a0e19c36816e918b4d7d2fdf to your computer and use it in GitHub Desktop.
Save abdurahmanadilovic/5d2b59a2a0e19c36816e918b4d7d2fdf to your computer and use it in GitHub Desktop.
Coroutine UI context
launch {
// some code
val value = dataStorageImplementation.getStringValue("some_key")
// some code
launch (UI) {
textView.text = value
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment