我有一个要基于“ ObservableBoolean”更改的XML字段,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
>
<data>
<variable
name="isColored"
type="androidx.databinding.ObservableBoolean"
/>
</data>
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<com.consoleco.console.customView.PerTextView
android:layout_width="0dp"
android:layout_height="48dp"
android:background="@{isColored ? ?attr/colorAccent : @color/grayBackground"
android:gravity="center"
android:text="@string/save"
android:textColor="@color/white"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
/>
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>
在上面的这段代码中:
android:background="@{isColored ? ?attr/colorAccent : @color/grayBackground"
我们不能使用两个'?'标记(IDE给出错误:预期,得到了吗? 我该如何解决这个问题?
答案 0 :(得分:1)
您可以为此使用BindingAdapter(将其添加到类中):
@BindingAdapter("isColored")
public static void isColored(View view, boolean isColored){
TypedValue typedValueColor = new TypedValue();
view.getContext().getTheme().resolveAttribute(R.attr.colorAccent, typedValueColor, true);
if(isColored){
view.setBackground(typedValueColor.data);
} else {
view.setBackground(view.getContext().getResources().getColor(R.color.grayBackground));
}
}
然后在您的xml布局中替换以下内容:
android:background="@{isColored ? ?attr/colorAccent : @color/grayBackground"
与此:
app:isColored="@{isColored}"
答案 1 :(得分:0)
是的,是的。您不能在表达式中使用?attr。
目前,您只能使用@color/colorAccent
代替?attr/colorAccent