我想要浮动按钮的实现动画

时间:2017-05-02 14:48:22

标签: android android-animation floating-action-button

我想给我的浮动按钮提供一个完整的旋转动画,我有代码,但它只有旋转一半的动画。我想从一个位置旋转浮动按钮,它应该以它开始的相同位置结束(一个完整的旋转),怎么做?

这是我的代码,我想要一些修改值或代码

  final OvershootInterpolator interpolator = new OvershootInterpolator();
            ViewCompat.animate(fab).
                    rotation(170f).
                    withLayer().
                    setDuration(1000).
                    setInterpolator(interpolator).
                    start();

1 个答案:

答案 0 :(得分:1)

在res / anim中创建rotate.xml:

 <?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
    <rotate

        android:fromDegrees="0"
        android:toDegrees="360"
        android:pivotX="50%"
        android:pivotY="50%"
        android:repeatCount="0"
        android:duration="1000" />

</set>

然后在代码中:

 FloatingActionButton mFloatingButton = view.findViewById(R.id.myFloatingButton);

        Animation mAnimation = AnimationUtils.loadAnimation(this, R.anim.rotate);

        mFloatingButton.startAnimation(mAnimation);