3

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

我该如何解决?

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>

内部视图类

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

1 回答 1

1

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

class BindingUtil {

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

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

               <Textview
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                app:cpb_title="@{model.someStringField}" />
于 2020-07-14T12:45:33.970 回答