Skip to content

Instantly share code, notes, and snippets.

@AndreVero
Last active October 8, 2024 15:44
Show Gist options
  • Save AndreVero/164a728d6fc2e547ade9960ae0ff5440 to your computer and use it in GitHub Desktop.
Save AndreVero/164a728d6fc2e547ade9960ae0ff5440 to your computer and use it in GitHub Desktop.
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
val asyncImageView = findViewById<ImageViewAsync>(R.id.asyncImageView)
asyncImageView.setUrl(
"Some image url"
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment