Skip to content

Instantly share code, notes, and snippets.

@AndreVero
Created September 23, 2024 15:46
Show Gist options
  • Save AndreVero/dc7ecbca24198d7d4335ca634294eb89 to your computer and use it in GitHub Desktop.
Save AndreVero/dc7ecbca24198d7d4335ca634294eb89 to your computer and use it in GitHub Desktop.
private val scope = CoroutineScope(Dispatchers.IO)
fun setUrl(url: String) {
scope.launch {
val bitmap = loadBitmap(url)
withContext(Dispatchers.Main) {
setImageBitmap(bitmap)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment