gpt4 book ai didi

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

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:52:09 25 4
gpt4 key购买 nike

我可以淡出。但不是收缩。我希望它看起来像是要进入很远很远的地方。

我想要一个类似于 www.screamintothevoid.com 中使用的动画

最佳答案

这应该会如您所愿。

/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);

关于Android动画同时缩小和淡出一个View,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32992221/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com