自定义属性 setter 数据绑定时出错 - Android

custom attribute setter error when data binding - Android

我有一个声明为字符串类型的自定义属性,当像这样 xml 中将值作为字符串传递时 app:cpb_title="sometsring" 它的工作但是当我尝试像这样的数据绑定时 app:cpb_title"@{model.someStringField}" 它给了我错误 "找不到接受参数类型 java.lang.String" 的 "app:cpb_title" 的 setter"

我该如何解决?

attrs.xml

  <declare-styleable name="CircularProgressBar">
    <attr name="cpb_hasShadow" format="boolean"/>
    <attr name="cpb_progressColor" format="string"/>
    <attr name="cpb_backgroundColor" format="string"/>
    <attr name="cpb_title" format="string"/>
    <attr name="cpb_titleColor" format="string"/>
    <attr name="cpb_subtitle" format="string"/>
    <attr name="cpb_subtitleColor" format="string"/>
    <attr name="cpb_strokeWidth" format="integer"/>
</declare-styleable>

内景class

 String t = a.getString(R.styleable.CircularProgressBar_cpb_title);
    if(t!=null)
        mTitle = t;

您可以使用 BindingAdapter 而不是在 attrs.xml 文件中声明属性。请按以下步骤操作:

class BindingUtil {

    @BindingAdapter("cpb_title")
    public static void setTitle(TextView view, String title) {
        view.setText(title);
    }
}

然后,您可以在 XML 中使用 app:cpb_title 属性,如下所示:

               <Textview
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                app:cpb_title="@{model.someStringField}" />