diff options
| author | Jorim Jaggi <jjaggi@google.com> | 2016-03-15 14:38:37 +0100 |
|---|---|---|
| committer | Jorim Jaggi <jjaggi@google.com> | 2016-03-25 15:13:36 -0700 |
| commit | c69bd2246f4ec5000591fdc381f84cd90be85b7f (patch) | |
| tree | 89216418091ad7c1c458e36d0bde06dadc4df8be /core/java/android/animation/Keyframes.java | |
| parent | 787e9dd6c81a2db27cd002ca6672be4279cabe88 (diff) | |
Implement transition for docking task in recents #6
- Use a future to provide the app thumbnail so the app can restart
in parallel when recents draws the bitmap (extremely expensive).
- Don't call startRecents from AM when recents is already running - this
messes up the transition information.
- Make sure to put the task into resizing mode if it needs to be restored
from the disk.
- Some minor fixes for the transition animation spec.
- Add NO_MOVE_ANIMATION to recents flags to prevent wallpaper
flickering.
Bug: 27607141
Change-Id: I7d0c75b88775ab467927b8cf94303ddb60222e7f
Diffstat (limited to 'core/java/android/animation/Keyframes.java')
| -rw-r--r-- | core/java/android/animation/Keyframes.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/java/android/animation/Keyframes.java b/core/java/android/animation/Keyframes.java index c149bed0d00e..e40a86cb17d8 100644 --- a/core/java/android/animation/Keyframes.java +++ b/core/java/android/animation/Keyframes.java @@ -20,8 +20,9 @@ import java.util.List; /** * This interface abstracts a collection of Keyframe objects and is called by * ValueAnimator to calculate values between those keyframes for a given animation. + * @hide */ -interface Keyframes extends Cloneable { +public interface Keyframes extends Cloneable { /** * Sets the TypeEvaluator to be used when calculating animated values. This object |
