我们如何在 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" />
如果待处理为真,我想要一张图像,如果待处理为假,我想要一张图像。但它显示错误。我怎样才能实现这个功能?