Почему мои LiveData<Drawable> не отображаются в качестве фона?
Я хочу динамически изменять фон кнопки с помощью объекта 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>
Почему не рисуется, что я вставил в LiveData через .postValue()
отображается как фон?
1 ответ
Вы назначаете LiveData<Drawable>
в backgorund
property
так что вы не можете достичь того, чего хотите.
Observe
Livedata
в вашем Activity
и применить backgorund
на ваш Button
, и попробовать yourBindingvar.executePendingBindings()
, Это может помочь вам.