mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-01 00:06:47 +00:00
Remove use of private ValueAnimator api
Change-Id: I455edcd17bda83ab51c2c04fa40e66097a4d6975
This commit is contained in:
@@ -45,7 +45,7 @@ public class InterruptibleInOutAnimator {
|
||||
private int mDirection = STOPPED;
|
||||
|
||||
public InterruptibleInOutAnimator(long duration, float fromValue, float toValue) {
|
||||
mAnimator = ValueAnimator.ofFloat(fromValue, toValue).setDuration(duration);
|
||||
mAnimator = LauncherAnimUtils.ofFloat(fromValue, toValue).setDuration(duration);
|
||||
mOriginalDuration = duration;
|
||||
mOriginalFromValue = fromValue;
|
||||
mOriginalToValue = toValue;
|
||||
|
||||
Reference in New Issue
Block a user