如何在 android 中使用数据绑定将图像资源放入 ImageView
?
<ImageView
android:id="@+id/is_synced"
android:src="@{model.pending ? @mipmap/pending: @mipmap/synced}"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
我想要一个图像,如果挂起为真,另一个图像,如果挂起为假。但它显示错误。我如何实现这个功能?