Android动画的InterpolatorUtil参数说明

/**
 * @author YOLANDA
 * @Time 2015年3月5日 上午10:20:09
 */
public class InterpolatorUtil {
	/**匀速**/
	public static final LinearInterpolator LINEAR_INTERPOLATOR = new LinearInterpolator();
	
	/**开始时慢,以后加速**/
	public static final AccelerateInterpolator ACCELERATE_INTERPOLATOR = new AccelerateInterpolator();
	
	/**开始时慢,然后减速**/
	public static final DecelerateInterpolator DECELERATE_INTERPOLATOR = new DecelerateInterpolator(); 
	
	/**开始与结束较慢,中间加速**/
	public static final AccelerateDecelerateInterpolator ACCELERATE_DECELERATE_INTERPOLATOR = new AccelerateDecelerateInterpolator();
}

你可能感兴趣的:(Android动画的InterpolatorUtil参数说明)