android.databinding.adapters.ImageViewBindingAdapter
, .
, , , :
@Bindable
public Drawable getDrawable() {
return new BitmapDrawable(context.getResources(), bitmap);
}
ImageView
- :
android:src="@{viewModel.drawable}"
, viewModel
โโ .
, ImageViewBindingAdapter
:
@BindingAdapter("android:src")
public static void setImageDrawable(ImageView view, Drawable drawable) {
view.setImageDrawable(drawable);
}