gpt4 book ai didi

android - Android中 View 的气泡动画?

转载 作者:太空狗 更新时间:2023-10-29 15:31:14 24 4
gpt4 key购买 nike

当我启动屏幕时,我需要使用放大、缩小、淡入等气泡动画在屏幕上显示 View 。

最佳答案

在您的 onCreateView()只需通过 getDecorView() 查看整个布局并应用以下动画代码:

ScaleAnimation scale = new ScaleAnimation(0, 1, 0, 1, ScaleAnimation.RELATIVE_TO_SELF, .5f, ScaleAnimation.RELATIVE_TO_SELF, .5f);
scale.setDuration(300);
scale.setInterpolator(new OvershootInterpolator());

将动画应用于您的 View :
yourView.startAnimation(scale);

关于android - Android中 View 的气泡动画?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23195517/

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