我想通过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的可绘制对象不会显示为背景?
答案 0 :(得分:0)
您将LiveData<Drawable>
分配给backgorund
property
,因此您无法实现想要的目标。
Observe
Livedata
中的Activity
并将backgorund
应用于您的Button
。
并尝试yourBindingvar.executePendingBindings()
。它可以帮助您。