安卓数据绑定和动画

2022-09-04 08:27:57

有人可以给我指出在使用数据绑定时如何触发动画的方向吗?

我有一个图标,它根据我的视图模型中的数据而变化。如何在视图模型更改时(即,当视图模型中的属性更改时)对图标更改进行动画处理?


答案 1

一种可能的解决方案是使用绑定适配器。下面是一个快速示例,向您展示了前进的方向:

首先,我们定义一个自定义绑定适配器:

import android.databinding.BindingAdapter;
import android.support.v4.view.animation.FastOutSlowInInterpolator;
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.Interpolator;
import android.view.animation.RotateAnimation;
import android.view.animation.TranslateAnimation;

public class ViewBusyBindings {
    private static final Interpolator INTERPOLATOR = new FastOutSlowInInterpolator();

    @BindingAdapter("isBusy")
    public static void setIsBusy(View view, boolean isBusy) {
        Animation animation = view.getAnimation();
        if (isBusy && animation == null) {
            view.startAnimation(createAnimation());
        } else if (animation != null) {
            animation.cancel();
            view.setAnimation(null);
        }
    }

    private static Animation createAnimation() {
        RotateAnimation anim = new RotateAnimation(0, 360, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
        anim.setInterpolator(INTERPOLATOR);
        anim.setDuration(1400);
        anim.setRepeatCount(TranslateAnimation.INFINITE);
        anim.setRepeatMode(TranslateAnimation.RESTART);
        return anim;

    }
}

示例布局将如下所示:

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto">
    <data>
        <variable
            name="vm"
            type="de.example.exampleviewmodel"/>
    </data>

    <FrameLayout 
                 android:layout_width="match_parent"
                 android:layout_height="wrap_content"
                 >
        <ImageButton
            android:id="@+id/btnPlay"
            style="?attr/borderlessButtonStyle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="right|bottom"
            android:src="@drawable/ic_play_circle_filled_white_36dp"
            app:isBusy="@{vm.isBusy}"/>

    </FrameLayout>
</layout>

如您所见,您的 viemodel 的 'isBusy' 属性绑定到视图(imagebutton)。您可以在任何视图中使用此适配器,而不仅仅是在图像按钮上。

当然,'isBusy'属性必须是可绑定的(例如,您的视图模型扩展了BaseObservable,或者至少它是一个可观察的布尔值)。

因此,每当您将'isBusy'属性更改为true时,它都会触发动画启动。将其设置为 false,它将停止。

希望这有帮助?


答案 2

推荐