0
我有「int不能取消引用」錯誤當我嘗試使用數據綁定佈局內的二進制運算符使用二進制運算符設置標誌。int不能被解除引用。數據綁定二元運算符
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/tools">
<data>
<variable
name="textState"
type="java.lang.Integer"/>
</data>
<android.support.v7.widget.AppCompatCheckBox
android:id="@+id/checkbox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Text"
app:paintFlags="@{checkbox.getPaintFlags() | textState.intValue()}"/>
</layout>