Problem is @dimen/place_holder_size
, it returns float
while you are catching it as int
change you BindingAdapter
method to this
@BindingAdapter({"bind:url", "bind:size"})
public static void loadImage(ImageView imageView, String url, float size) {
}
you can refer this
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…