- databinding --> Imageview
入坑背景:
用recyclerview做一个九宫格列表,使用Imageview显示icon。
报错信息:
D:\f_data\work\git\mpro_java\app\build\generated\ap_generated_sources\debug\out\com.cc.test\DataBinderMapperImpl.java:19: ����: �Ҳ�������
import com.cc.test.databinding.ListItemCommonlyServerBindingImpl;
^
����: �� ListItemCommonlyServerBindingImpl
�: ����� com.hnty.mpro.databinding
解决:
再adapter中加入一下代码
@BindingAdapter({"app:imgUrl"})
public static void getTransImageView(ImageView imageView, int res) {
imageView.setImageResource(res);
}
再xml中使用app:imgUrl="@{model.icon_id}"