Skip to content

Instantly share code, notes, and snippets.

@aucd29
Created May 10, 2018 08:59
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 aucd29/2d0fdcc2996314fef9a29c46db7fbe3d to your computer and use it in GitHub Desktop.
Save aucd29/2d0fdcc2996314fef9a29c46db7fbe3d to your computer and use it in GitHub Desktop.
public class ImageBindingAdapter {
@BindingAdapter("android:src")
public static void imageSrc(@NonNull ImageView view, @DrawableRes int resid) {
view.setImageResource(resid);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment