数据绑定设置颜色

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据绑定设置颜色相关的知识,希望对你有一定的参考价值。

我尝试使用三元运算符来更改按钮的文本颜色。像这样的东西:这是xml。

<Button
    android:id="@+id/actionButton"
    android:layout_width="113dp"
    android:layout_height="30dp"
    android:background="@drawable/button"
    android:backgroundTint="@{selected ? R.color.white : R.color.turquoise}"
    android:text="@{selected ? &quot;Selected &quot; : &quot;Select &quot;}"
    android:textColor="@{selected ? @color/white : @color/turquoise}"
    android:onClick="@{(view) -> handler.selectClick(view)}"/>

但颜色设置不正确。我得到了一些奇怪的紫色。

我试过了

<import type="com.myapp.R" />
android:textColor="@{selected ? R.color.white : R.color.turquoise}"

结果相同。 我该怎么办?

答案

你的第一个变种应该工作正常。您可以参考this doc的“资源”章节。这是一个完整的工作示例。

colors.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    ...
    <color name="foo">#fff</color>
    <color name="bar">#000</color>
</resources>

main_activity.xml

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

    <data>
        <variable name="selected" type="boolean" />
        <variable name="button2" type="String" />
    </data>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/btn_a"
            android:onClick="switchColor"
            android:text="Click me"/>

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/btn_b"
            android:textColor="@{selected ? @color/foo : @color/bar}"
            android:text="@{button2}"/>

    </LinearLayout>
</layout>

ActivityMain.class

public class ActivityMain extends AppCompatActivity {

    public static final String TAG = "MainActivity";

    MainActivityBinding mBinding;
    boolean mSelected;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        mBinding = DataBindingUtil.setContentView(this, R.layout.main_activity);
        mBinding.setButton2("Don't click me please!");
    }

    public void switchColor(View view) {
        mBinding.setSelected(mSelected = !mSelected);
    }
}

以上是关于数据绑定设置颜色的主要内容,如果未能解决你的问题,请参考以下文章

根据数据绑定值设置背景颜色

数据绑定设置颜色

实用代码片段将json数据绑定到html元素 (转)

使用绑定从片段访问父活动的 UI 元素

Typora设置自定义代码颜色

Alfred常见使用