【Android】xml实现简单动画集合

AnimationSet

动画集合

res/anim/animation_in_and_out_from_left.xml

<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:shareInterpolator="false">
    <translate
        android:duration="1000"
        android:fillAfter="true"
        android:fromXDelta="-100%p"
        android:interpolator="@android:anim/accelerate_interpolator"
        android:toXDelta="0%p"/>
    <set
        android:interpolator="@android:anim/accelerate_interpolator"
        android:startOffset="1000">
        <translate
            android:duration="1000"
            android:fromXDelta="0%p"
            android:interpolator="@android:anim/accelerate_interpolator"
            android:toXDelta="-100%p"/>
    </set>
</set>

  调用

        Animation leftAnimation = AnimationUtils.loadAnimation(this, R.anim.animation_in_and_out_from_left);
        mLeftImageView.setAnimation(leftAnimation);
        mLeftImageView.startAnimation(leftAnimation);

  但是在魅族手机上播放不了,不知道哪位大神知道,还望赐教。

posted @ 2017-05-11 15:42  LittleEyes  阅读(1455)  评论(0编辑  收藏  举报