gpt4 book ai didi

java - 使用 Google 数据绑定(bind)对 View 宽度进行动画处理

转载 作者:行者123 更新时间:2023-12-01 20:52:41 28 4
gpt4 key购买 nike

当我的 ViewModel 中的 boolean 值发生变化时,我想为 View 宽度设置动画...但我不知道如何绑定(bind)它。

我有这样的观点:

<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" />

和 View 模型:

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 ...所以我无法在 View 中触发动画,我需要数据绑定(bind)来为我做到这一点...但我不知道如何在我看来触发这个动画。

我不需要宽度动画方面的帮助,只需要数据绑定(bind)部分。

最佳答案

有多种方法可以做到这一点。首先想到的是使用 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
}

并且您必须将其绑定(bind)到布局中:

<View app:isExpanded="@{viewModel.isSearchEnabled}" .../>

关于java - 使用 Google 数据绑定(bind)对 View 宽度进行动画处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42915441/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com