summaryrefslogtreecommitdiff
path: root/core/java/android/window/SplashScreenView.java
diff options
context:
space:
mode:
Diffstat (limited to 'core/java/android/window/SplashScreenView.java')
-rw-r--r--core/java/android/window/SplashScreenView.java20
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