如何使Card Flip动画支持.v4.fragment工作?

时间:2017-12-18 10:42:37

标签: android

尝试使用support.v4.fragment制作卡片翻转动画,遵循本教程http://developer.android.com/training/animation/cardflip.html

1 个答案:

答案 0 :(得分:0)

对于动画来说,donot认为它很难

使用带有以下代码的动画

  Animation animation = AnimationUtils.loadAnimation(MainActivity.this, R.anim.rotate);
        imageView.startAnimation(animation);  //image view is the widget in your respective layout file

在res文件夹中创建一个名为anims的目录,并制作名为 rotate 的动画文件

将此代码放在那里

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<rotate
    android:duration="750"
    android:fromDegrees="0"
    android:toDegrees="15"
    android:pivotX="50%"
    android:pivotY="50%">
</rotate>
</set>

这适用于旋转动画,您可以自己创建。