为什么我的LiveData <drawable>没有显示为背景?

时间:2018-10-17 11:58:20

标签: android android-drawable android-livedata

我想通过LiveData对象动态更改按钮的背景。

我的ViewModel:

public class ViewModel {
    public ViewModel(Context context) {
    }

    public LiveData<Drawable> getBackDrawable(){
        MutableLiveData background = new MutableLiveData<>();
        background.postValue(new ColorDrawable(Color.parseColor("#FF0000")));

        return background;

    }
}

我的Xml:

<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"
    tools:context=".MainActivity">

    <data>
        <variable
            name="ViewModel"
            type="com.example.ckleineidam.testproject.ViewModel" />
    </data>

    <android.support.constraint.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <Button
            android:id="@+id/activation_button"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Test Button"
            android:background="@{ViewModel.getBackDrawable}" />
    </android.support.constraint.ConstraintLayout >
</layout>

为什么我通过.postValue()插入LiveData的可绘制对象不会显示为背景?

1 个答案:

答案 0 :(得分:0)

您将LiveData<Drawable>分配给backgorund property,因此您无法实现想要的目标。

Observe Livedata中的Activity并将backgorund应用于您的Button。 并尝试yourBindingvar.executePendingBindings()。它可以帮助您。