Merge "Fix black image wallpaper issue" into qt-qpr1-dev
This commit is contained in:
@@ -81,12 +81,6 @@ class ImageRevealHelper {
|
||||
});
|
||||
}
|
||||
|
||||
private void animate() {
|
||||
mAnimator.cancel();
|
||||
mAnimator.setFloatValues(mReveal, mAwake ? MAX_REVEAL : MIN_REVEAL);
|
||||
mAnimator.start();
|
||||
}
|
||||
|
||||
public float getReveal() {
|
||||
return mReveal;
|
||||
}
|
||||
@@ -95,8 +89,8 @@ class ImageRevealHelper {
|
||||
if (DEBUG) {
|
||||
Log.d(TAG, "updateAwake: awake=" + awake + ", duration=" + duration);
|
||||
}
|
||||
mAnimator.cancel();
|
||||
mAwake = awake;
|
||||
mAnimator.setDuration(duration);
|
||||
if (duration == 0) {
|
||||
// We are transiting from home to aod or aod to home directly,
|
||||
// we don't need to do transition in these cases.
|
||||
@@ -105,7 +99,9 @@ class ImageRevealHelper {
|
||||
mRevealListener.onRevealStateChanged();
|
||||
mRevealListener.onRevealEnd();
|
||||
} else {
|
||||
animate();
|
||||
mAnimator.setDuration(duration);
|
||||
mAnimator.setFloatValues(mReveal, mAwake ? MAX_REVEAL : MIN_REVEAL);
|
||||
mAnimator.start();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user