1

尝试调用虚拟方法: void android.widget.Button.setTag(java.lang.Object)
在空对象引用上。

当我androiddataBinding在 Button 上使用时出现错误,例如:

<Button
    android:id="@+id/btn_login"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="20dp"
    android:layout_marginRight="20dp"
    android:layout_marginTop="50dp"
    android:background="@{userInfo.isEmpty?@drawable/shape_gray_corner:@color/colorWhite}"
    android:text="@string/text_login"
    android:onClick="onViewClik"
    android:textColor="@color/colorWhite"
    android:textSize="@dimen/textsize_24" />
4

1 回答 1

0

我认为您必须尝试默认颜色而不是可绘制的或在两个地方都使用可绘制的。

像这样

android:background="@{userInfo.isEmpty ? @color/colorYellow : @color/colorWhite}"
于 2016-08-30T04:54:14.023 回答