SplashScreen
public
interface
SplashScreen
android.window.SplashScreen |
The interface that apps use to talk to the splash screen.
Each splash screen instance is bound to a particular Activity
.
To obtain a SplashScreen
for an Activity, use
Activity.getSplashScreen()
to get the SplashScreen.
Summary
Nested classes | |
---|---|
interface |
SplashScreen.OnExitAnimationListener
Listens for the splash screen exit event. |
Constants | |
---|---|
int |
SPLASH_SCREEN_STYLE_ICON
Flag to be used with |
int |
SPLASH_SCREEN_STYLE_SOLID_COLOR
Flag to be used with |
Public methods | |
---|---|
abstract
void
|
clearOnExitAnimationListener()
Clear exist listener |
abstract
void
|
setOnExitAnimationListener(SplashScreen.OnExitAnimationListener listener)
Specifies whether an |
abstract
void
|
setSplashScreenTheme(int themeId)
Overrides the theme used for the |
Constants
SPLASH_SCREEN_STYLE_ICON
public static final int SPLASH_SCREEN_STYLE_ICON
Flag to be used with ActivityOptions#setSplashScreenStyle
, to show the splash screen
icon of the launched activity.
Constant Value: 1 (0x00000001)
SPLASH_SCREEN_STYLE_SOLID_COLOR
public static final int SPLASH_SCREEN_STYLE_SOLID_COLOR
Flag to be used with ActivityOptions#setSplashScreenStyle
, to avoid showing the
splash screen icon of the launched activity
Constant Value: 0 (0x00000000)
Public methods
clearOnExitAnimationListener
public abstract void clearOnExitAnimationListener ()
Clear exist listener
setOnExitAnimationListener
public abstract void setOnExitAnimationListener (SplashScreen.OnExitAnimationListener listener)
Specifies whether an Activity
wants to handle the splash screen animation on its
own. Normally the splash screen will show on screen before the content of the activity has
been drawn, and disappear when the activity is showing on the screen. With this listener set,
the activity will receive OnExitAnimationListener#onSplashScreenExit
callback if
splash screen is showed, then the activity can create its own exit animation based on the
SplashScreenView.
Note that this method must be called before splash screen leave, so it only takes effect
during or before Activity#onResume
.
Parameters | |
---|---|
listener |
SplashScreen.OnExitAnimationListener : the listener for receive the splash screen with
This value cannot be null . |
setSplashScreenTheme
public abstract void setSplashScreenTheme (int themeId)
Overrides the theme used for the SplashScreen
s of this application.
By default, the SplashScreen
uses the theme set in the manifest. This method
overrides and persists the theme used for the SplashScreen
of this application.
To reset to the default theme, set this the themeId to Resources#ID_NULL
.
Note: Internally, the theme name is resolved and persisted. This means that the theme name must be stable across versions, otherwise it won't be found after your application is updated.
Parameters | |
---|---|
themeId |
int : The ID of the splashscreen theme to be used in place of the one defined in
the manifest. |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2024-04-04 UTC.