gpt4 book ai didi

android - 数据绑定(bind)时自定义属性 setter 错误 - Android

转载 作者:行者123 更新时间:2023-12-04 17:26:34 27 4
gpt4 key购买 nike

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

我该如何解决?

属性.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>

内部 View 类

 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}" />

关于android - 数据绑定(bind)时自定义属性 setter 错误 - Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62894573/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com