我正在尝试创建两个图像的动画。我想要图像,当点击时,它会像卡一样水平翻转180度到新图像(从前到后)。我想在布局上使用多个图像执行此操作。如何编写此代码并在需要执行时调用它?
答案 0 :(得分:2)
In Resource->Create anim folder->xml file with any name
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:shareInterpolator="false">
<scale
android:fromXScale=".3"
android:toXScale="1.0"
android:fromYScale="0.3"
android:toYScale="1.0"
android:pivotX="50%"
android:pivotY="50%"
android:duration="800" />
<rotate
android:fromDegrees="0"
android:toDegrees="180"
android:pivotX="50%"
android:pivotY="50%"
android:duration="800" />
</set>
现在你可以随时随地使用这个动画