所以我为android写了一个应用程序,现在我正在尝试向它添加一些动画。我想要的所有动画都是当我改变屏幕时。所以我尝试了那个动画:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<scale
android:interpolator="@android:anim/decelerate_interpolator"
android:fromXScale="1.0"
android:toXScale="1.0"
android:fromYScale="0.0"
android:toYScale="1.0"
android:fillAfter="false"
android:startOffset="200"
android:duration="200" />
<translate
android:fromYDelta="50%"
android:toYDelta="0"
android:startOffset="200"
android:duration="180"/>
</set>
它看起来还不错,但并不完美。我想知道是否有任何动画在线,但我没有找到。还有默认动画,不要为我做这个把戏。好的动画有什么想法或样本吗?我正在寻找一些非常简单的东西,比如 screnn rotate in 之类的。