Android View放大,同时缩放翻译

时间:2017-01-28 17:45:07

标签: android xml animation android-animation

我试图制作一个Android动画,其中一个视图从左向右翻译,它在翻译过程中按顺序放大和缩小,整个动画重复无限次。以下是我的动画xml文件,但其输出是意外的。请帮助我实现理想的解决方案。 `

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
    <translate
        android:duration="10000"
        android:fromXDelta="0%p"
        android:repeatCount="-1"
        android:repeatMode="restart"
        android:toXDelta="100%p" />
    <set android:ordering="sequentially">
        <scale
            android:duration="500"
            android:fromXScale="0%"
            android:fromYScale="0%"
            android:repeatCount="-1"
            android:repeatMode="restart"
            android:toXScale="150%"
            android:toYScale="150%" />
        <scale
            android:duration="500"
            android:fromXScale="150%"
            android:fromYScale="150%"
            android:repeatCount="-1"
            android:repeatMode="restart"
            android:toXScale="0%"
            android:toYScale="0%"/>
    </set>
</set>

`

0 个答案:

没有答案