79420435

Date: 2025-02-07 09:57:45
Score: 0.5
Natty:
Report link

You should add attribute to res/values/*.xml:

<attr name=«foo» format=«string»/>

Use @BindingAdapter without the :app prefix:

@BindingAdapter("foo")
fun setFoo(view: ImageView, foo: String) {
    print(foo)
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: dmortal