diff options
| author | Selim Cinek <cinek@google.com> | 2021-06-14 08:02:08 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2021-06-14 08:02:08 +0000 |
| commit | bfa0487b7a72bdedf2e4f0bac3171f55c579aa54 (patch) | |
| tree | 41c13a03316f90f22452511fd0dad339b3d27db0 /core/java/android | |
| parent | f0b8563020f5866d58ef5f4922ee0b1d4d602642 (diff) | |
| parent | 192aef77d7ae2d51f8e830cfc73bd65f37216079 (diff) | |
Merge "Always do the app reveal animation when dismissing the splash screen" into sc-dev
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/window/SplashScreenView.java | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/core/java/android/window/SplashScreenView.java b/core/java/android/window/SplashScreenView.java index 000dfb2bfa59..6772afeb0270 100644 --- a/core/java/android/window/SplashScreenView.java +++ b/core/java/android/window/SplashScreenView.java @@ -85,7 +85,6 @@ public final class SplashScreenView extends FrameLayout { | FLAG_TRANSLUCENT_NAVIGATION | FLAG_TRANSLUCENT_STATUS; private boolean mNotCopyable; - private boolean mRevealAnimationSupported = true; private int mInitBackgroundColor; private int mInitIconBackgroundColor; private View mIconView; @@ -353,25 +352,6 @@ public final class SplashScreenView extends FrameLayout { } /** - * If set to true, indicates to the system that this view can be dismissed by playing the - * Reveal animation. - * <p> - * If the exit animation is handled by the client, the animation won't be played anyway. - * @hide - */ - public void setRevealAnimationSupported(boolean support) { - mRevealAnimationSupported = support; - } - - /** - * Whether this view support reveal animation. - * @hide - */ - public boolean isRevealAnimationSupported() { - return mRevealAnimationSupported; - } - - /** * Called when this {@link SplashScreenView} has been copied to be transferred to the client. * * @hide |
