gpt4 book ai didi

Android 对象动画不能正常工作

转载 作者:行者123 更新时间:2023-11-30 00:56:27 24 4
gpt4 key购买 nike

我正在使用 ObjectAnimator 将 RelativeLayout 的位置从屏幕中心移动到上方。动画在 RelativeLayout 上运行,但移动不流畅。它在开始位置和结束位置之间跳跃。代码:

 ObjectAnimator animY = ObjectAnimator.ofFloat(logolayout, "y", 350f);
animY.setInterpolator(new LinearInterpolator());
animY.setDuration(1500);
animY.start();

最佳答案

改用 ViewPropertyAnimator。

animate(view).y(350f).setInterpolator(new LinearInterpolator()).setDuration(1500).start();

关于Android 对象动画不能正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40080414/

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