Android动画同时收缩和淡出一个View

时间:2015-10-07 12:28:16

标签: android android-animation

我可以淡出。但不是缩水。我希望它看起来像是远远地走了很远的距离。

我想要一个类似于www.screamintothevoid.com

中使用的动画

2 个答案:

答案 0 :(得分:13)

这应该像你想要的那样工作。

/ res / anim

中的

animation.xml

 <set xmlns:android="http://schemas.android.com/apk/res/android">
        <scale xmlns:android="http://schemas.android.com/apk/res/android"
            android:fromXScale="1"
            android:toXScale="0"
            android:fromYScale="1"
            android:toYScale="0"
            android:duration="5000"
            android:pivotX="50%"
            android:pivotY="50%" >
        </scale>

        <alpha
            android:fromAlpha="1"
            android:toAlpha="0"
            android:duration="5000" >
        </alpha>
    </set>

调用此动画:

TextView textView = (TextView) findViewById(R.id.text_view);
Animation animation = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.animation);
textView.startAnimation(animation);

答案 1 :(得分:3)

缩小视图会更改其缩放值,例如:

TextView textToShrink = (TextView) findViewById(R.id.text_to_shrink);
textToShrink.animate().scaleX(0.3f).scaleY(0.3f).setDuration(600).start();