private static float lerp(float startValue, float endValue, float fraction,
Interpolator interpolator) {
if (interpolator != null) {
fraction = interpolator.getInterpolation(fraction);
}
return AnimationUtils.lerp(startValue, endValue, fraction);
}
CollapsingTextHelper.java 文件源码
java
阅读 40
收藏 0
点赞 0
评论 0
项目:cwac-crossport
作者:
评论列表
文章目录