如果我有这样的转换方程:
c*t/d + b
用于以下函数:
public static float easeNone (float t,float b , float c, float d) {
return c*t/d + b;
}
如何在android中的视图中应用此功能?其中:
t: current time
b: start value
c: change in value
d: duration
this link中的内容。想要做的是在一些动画中移动视图(即按钮),如上面的链接,其中给出了动画数学方程
答案 0 :(得分:1)
在onTick方法中执行此操作
public void onTick(long millisUntilFinished) {
long time = totaltime - millisUntilFinished;
float x = easeNone(time, your parameters);
}