Android でデータ バインディングを使用して、画像リソースを .xml ファイルに配置するにはどうすればよい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" />
保留中が true の場合は画像が、保留中が false の場合は別の画像が必要です。しかし、エラーが表示されます。この機能を実現するにはどうすればよいですか?