gpt4 book ai didi

java - 如何在android中的 View 上应用过渡动画方程

转载 作者:行者123 更新时间:2023-12-01 13:39:03 25 4
gpt4 key购买 nike

如果我有这样的转移方程:

 c*t/d + b

如以下函数中所使用:

 public static float easeNone (float t,float b , float c, float d) {
return c*t/d + b;
}

如何在 android 中的 View 中应用此功能?其中:

t: current time
b: start value
c: change in value
d: duration

类似于 this link 中的内容。想要做的是在某些动画中移动 View (即按钮),如上面的链接所示,其中给出了动画数学方程

最佳答案

看看Android Timer

在 onTick 方法中执行此操作

 public void onTick(long millisUntilFinished) {
long time = totaltime - millisUntilFinished;
float x = easeNone(time, your parameters);
}

关于java - 如何在android中的 View 上应用过渡动画方程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20990565/

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