diff options
| author | Robert Carr <racarr@google.com> | 2016-08-16 01:44:07 +0000 |
|---|---|---|
| committer | android-build-merger <android-build-merger@google.com> | 2016-08-16 01:44:07 +0000 |
| commit | bdbc23bebe1345ab0f79fae3916484ea66071bc9 (patch) | |
| tree | 3d918037e96aff8321dc10c8890316b148f9687b /core/java | |
| parent | d66f01d3819ca63b19f4692fb1d6f08be3847bf3 (diff) | |
| parent | 5f684d92b6777eba951b40ff27d328aa16f8be9c (diff) | |
Introduce new constant for double tap gesture rotation hint. am: 57d9fbd17f
am: 5f684d92b6
Change-Id: Idf2bb8511e24732018ff59ffbf30f440cb7f9779
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/view/WindowManager.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/core/java/android/view/WindowManager.java b/core/java/android/view/WindowManager.java index 1b37ed47c392..eb6b17e08f46 100644 --- a/core/java/android/view/WindowManager.java +++ b/core/java/android/view/WindowManager.java @@ -1581,6 +1581,15 @@ public interface WindowManager extends ViewManager { public static final int ROTATION_ANIMATION_JUMPCUT = 2; /** + * Value for {@link #rotationAnimation} to specify seamless rotation mode. + * This works like JUMPCUT but will fall back to CROSSFADE if rotation + * can't be applied without pausing the screen. + * + * @hide + */ + public static final int ROTATION_ANIMATION_SEAMLESS = 3; + + /** * Define the exit and entry animations used on this window when the device is rotated. * This only has an affect if the incoming and outgoing topmost * opaque windows have the #FLAG_FULLSCREEN bit set and are not covered |
