我正在尝试在Android中使用双向数据绑定,但它会抛出一个错误,就像你看到的这个标题一样。
MyTableRow是一个自定义视图组:
public class MyShopTableRow extends RelativeLayout {
...
public void setRowContentText(String text) {
mRowInputEt.setText(text);
}
public String getRowContentText() {
if(TextUtils.isEmpty(mRowInputEt.getText())){
return "";
}
return mRowInputEt.getText().toString();
}
}
然后我在XML文件中使用它:
<data>
<variable
name="shopInfo"
type="com.example.TableModel" />
</data>
<com.example.widget.MyTableRow
android:layout_width="match_parent"
android:layout_height="46dp"
android:layout_marginTop="11dp"
...
app:rowInputType="text"
app:size="regular"
...
app:rowContentText="@={shopInfo.shopName}"/>
模型文件是:
public class TableModel {
public String shopName = "lalala";
....
}
Snippet只是一个单向数据绑定(@ {shopInfo.shopName}),但如果它是双向绑定则失败(找不到属性的getter)。
我还找到了关于这个问题的question,但答案对我没有用。
//The answer will throw an error below
//Error:(55, 17) Could not find event 'rowContentTextAttrChanged' on View type 'com.example.MyTableRow'
@InverseBindingMethods({
@InverseBindingMethod(type = MyShopTableRow.class, attribute = "rowContentText"),
})
public class MyShopTableRow extends RelativeLayout {
...
}
是IDE还是dataBinding lib的错误?
答案 0 :(得分:2)
您没有定义事件rowContentTextAttrChanged,当事件触发时,使用哪种方法获取新值。
应该是
InverseBindingMethods({InverseBindingMethod(
type = android.widget.TextView.class,
attribute = "android:text",
event = "android:textAttrChanged",
method = "getText")})
public class MyTextViewBindingAdapters { ... }