gpt4 book ai didi

android - 在 Imageview 上缩放动画

转载 作者:太空狗 更新时间:2023-10-29 16:28:07 25 4
gpt4 key购买 nike

如何为我的 ImageView 制作动画,就像下面 gif 中的 FloatingActionButton 的动画(显示和隐藏)。

FAB animating on RecylerView scroll

最佳答案

您可以使用放大/缩小动画来实现这一点。

scale_up.xml

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

scale_down.xml

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

要将动画应用到您的 imageView 上,您可以这样做:

    /**
* For scale up animation
*/
Animation animation = AnimationUtils.loadAnimation(mContext, R.anim.scale_up);
child.startAnimation(animation);
child.setVisibility(View.VISIBLE);

缩小

    /**
* For scale down animation
*/
Animation animation = AnimationUtils.loadAnimation(mContext, R.anim.scale_down);
child.startAnimation(animation);
child.setVisibility(View.INVISIBLE);

这取决于你希望 imageView 放大和缩小的位置。

关于android - 在 Imageview 上缩放动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44816238/

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