Skip to content

Instantly share code, notes, and snippets.

@shalperin
Created October 14, 2020 19:23
Show Gist options
  • Save shalperin/d36087cb14e3cd2e4e7d67fc9135d184 to your computer and use it in GitHub Desktop.
Save shalperin/d36087cb14e3cd2e4e7d67fc9135d184 to your computer and use it in GitHub Desktop.
CoroutineScope(Dispatchers.Main).launch{
var html:String? = null
withContext(Dispatchers.IO){
html= flickrApi.fetchContents()
}
binding.myTextView.text = html
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment