部分缺少一下<号
1:透明
xml:<
alpha xmlns:android=“http://schemas.android.com/apk/res/android”
android:duration=“4000”
android:fromAlpha=“1.0”
android:interpolator="@android:anim/accelerate_decelerate_interpolator"
android:toAlpha=“0.0”
android:repeatCount=“2”
/>
activity:
Animation animation = AnimationUtils.loadAnimation(this, R.anim.alpha);
t1.startAnimation(animation);
2:旋转
xml:
rotate xmlns:android=“http://schemas.android.com/apk/res/android”
android:duration = “4000”
android:fromDegrees=“0”
android:pivotX=“50%”
android:pivotY=“50%”
android:repeatCount = “-1”
android:repeatMode = “restart”
android:toDegrees=“720”
>
Android动画(旋转+透明+缩放+位移+效果一起使用+帧动画+属性动画)
最新推荐文章于 2022-03-26 21:03:07 发布