通过实现Interpolator
接口(interface),我已经成功地为 View 动画编写了新的插值器。
public class MyInterpolator implements Interpolator {
public MyInterpolator() {}
public float getInterpolation(float t) {
return somefunction(t);
}
}
我知道我可以通过创建实例并将其传递给
setInterpolator
类的Animation
方法来以编程方式使用此插值器。但是,是否可以在XML资源中为动画使用
MyInterpolator
? 最佳答案
在搜索相同的东西时,我遇到了android为此提供支持。 Android Custom Interpolators
关于android - XML中用于View动画的引用自定义插值器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19547758/