Установщик разрешения заголовка слайда Я читал этот слайд, но я не понимаю BindingMethod, мы должны написать этот метод где-нибудь?или это просто объяснить, как все работает.
I know for exemple we must write write BindingAdapter for some attribue like bellow
<TextView android : text = "@{myVariable}"/>
textView.setText(myVariable);
<ImageView android:src="@{user.image}"/>
imageView.setImageDrawable(user.image);
@BindingMethod(
type = android.widget.ImageView.class,
attribute = "android:src",
method = "setImageDrawable")