Skip to content

Instantly share code, notes, and snippets.

@Philio
Last active April 22, 2019 10:46
Show Gist options
  • Save Philio/a7a9dc06d9135917975660702dbb70b7 to your computer and use it in GitHub Desktop.
Save Philio/a7a9dc06d9135917975660702dbb70b7 to your computer and use it in GitHub Desktop.
@BindingAdapter("android:src")
public static void loadImage(ImageView view, String url) {
Picasso.get().load(url).fit().into(view);
}
@BindingAdapter("android:src")
fun loadImage(view: ImageView, url: String) {
Picasso.get().load(url).fit().into(view)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment