我想在ViewModel中的布尔值发生变化时为视图宽度设置动画...但我不知道如何绑定它。
我有这个观点:
<EditText
android:id="@+id/help_search_et"
android:layout_width="48dp"
android:layout_height="match_parent"
android:background="@drawable/border_search_help_txt"
android:hint="@string/hint_how_can_we_help"
android:singleLine="true" />
一个视图模型:
public class SomethingViewModel extends BaseViewModel {
private boolean isSearchEnabled;
void handleSearchRequest(){
if(isSearchEnabled) {
isSearchEnabled = false;
/* I need to make the EditText expand */
} else {
isSearchEnabled = true;
/* I need to make the EditText colapse */
}
}
}
当我使用MVVM时,我无法获得View的引用...所以我无法在视图中触发动画,我需要Databinding才能为我做到这一点......但我不知道如何在我的视图中触发此动画。
我不需要宽度动画方面的帮助,只需要数据绑定部分。
答案 0 :(得分:3)
有几种方法可以做到这一点。首先想到的是使用Transitions:
binding.addOnRebindCallback(new OnRebindCallback() {
@Override
public boolean onPreBind(ViewDataBinding binding) {
TransitionManager.beginDelayedTransition(
(ViewGroup)binding.getRoot());
return super.onPreBind(binding);
}
});
另一种方法是创建一个BindingAdapter:
@BindingAdapter("isExpanded")
public void setExpanded(View view, boolean isExpanded) {
// expand or collapse View, depending on isExpanded
}
你必须将它绑定在你的布局中:
<View app:isExpanded="@{viewModel.isSearchEnabled}" .../>