Android数据绑定无法使用View'android:tag'属性

时间:2015-08-05 07:37:02

标签: android data-binding

尝试在我的项目中使用新的Android数据绑定,但是在尝试将'android:tag'属性设置为某个自定义变量时出现错误。

我的menu_item.xml文件:

<?xml version="1.0" encoding="utf-8"?>
    <layout xmlns:tools="http://schemas.android.com/tools"
        xmlns:android="http://schemas.android.com/apk/res/android">

    <data>

        <variable
            name="menuItem"
            type="com.example.MenuItem" />
    </data>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal"
        android:tag="@{menuItem}"
        tools:ignore="UseCompoundDrawables">

        <!--suppress AndroidUnknownAttribute -->
        <ImageView
            android:id="@+id/icon"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:imageResource="@{menuItem.itemType.drawableId}" />

        <TextView
            android:id="@+id/displayName"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@{menuItem.itemType.displayNameId}" />

    </LinearLayout>
</layout>

我的MenuItem类:

public class MenuItem {

    public final ItemType itemType;

    public MenuItem(ItemType itemType) {
        this.itemType = itemType;
    }

}

部分杰出的MenyItemBinding.java:

public MenuItemBinding(View root) {
        super(root, 0);
        final Object[] bindings = mapBindings(root, 3, sIncludes, sViewsWithIds);
        this.displayName = (android.widget.TextView) bindings[2];
        this.displayName.setTag(null);
        this.icon = (android.widget.ImageView) bindings[1];
        this.icon.setTag(null);
        this.mboundView0 = (android.widget.LinearLayout) bindings[0];
        this.mboundView0.setTag(root.getResources().getString(com.myApp.R.string.@{menuItem}));
        setRootTag(root);
        invalidateAll();
    }

当尝试设置绑定视图的标记时,错误在生成的类中。

任何想法如何解决这个问题?最好不要使用自定义LinearLayout来支持这一点。

1 个答案:

答案 0 :(得分:12)

这是一个错误。我们还没有尝试过数据绑定标签,主要是因为标签很特殊。

在ICS之前定位设备时,Android数据绑定会接管布局最外层元素的标记。此标记主要用于绑定生命周期,由DataBindingUtil.findBinding()DataBindingUtil.getBinding()使用。

因此,由于数据绑定不适用于标记,因此唯一的解决方法是不向LinearLayout提供标记或提供固定标记或资源字符串。如果您的目标是ICS及更高版本,则在绑定布局后重新分配标记是有效的:

MenuItemBinding binding = MenuItemBinding.inflate(layoutInflater);
binding.getRoot().setTag(menuItem);

您还可以为新属性创建BindingAdapter:

@BindingAdapter("specialTag")
public static void setSpecialTag(View view, Object value) {
    view.setTag(value);
}

然后在你的布局中使用它:

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    app:specialTag="@{menuItem}"
    tools:ignore="UseCompoundDrawables"/>

这将允许您使用findViewByTag()以及您期望的所有其他内容。

但是,如果您定位Honeycomb和更早的设备,这将不起作用。没有绕过那个。你可能想做这样的事情:

@BindingAdapter("specialTag")
public static void setSpecialTag(View view, Object value) {
    view.setTag(R.id.app_tag, value);
}

您将无法使用findViewByTag这种方法,但它会在您使用视图时存储您想要的任何值。 我们不使用Honeycomb及更早版本的ID标签的原因是使用ID'd标签时存在内存泄漏,所以不要这样做

我希望这会有所帮助。我将在内部提交一个bug以支持数据绑定的android:tags。