mirror of
https://github.com/apache/cordova-android.git
synced 2025-01-31 17:32:51 +08:00
fix: only do fadeout animation if FadeSplashScreen is true (#1506)
This commit is contained in:
parent
80f232aa79
commit
56d4b8312b
@ -137,6 +137,7 @@ public class SplashScreenPlugin extends CordovaPlugin {
|
|||||||
// If auto hide is disabled (false), the hiding of the splash screen must be determined &
|
// If auto hide is disabled (false), the hiding of the splash screen must be determined &
|
||||||
// triggered by the front-end code with the `navigator.splashscreen.hide()` method.
|
// triggered by the front-end code with the `navigator.splashscreen.hide()` method.
|
||||||
|
|
||||||
|
if (isFadeEnabled) {
|
||||||
// Setup the fade
|
// Setup the fade
|
||||||
splashScreen.setOnExitAnimationListener(new SplashScreen.OnExitAnimationListener() {
|
splashScreen.setOnExitAnimationListener(new SplashScreen.OnExitAnimationListener() {
|
||||||
@Override
|
@Override
|
||||||
@ -146,8 +147,8 @@ public class SplashScreenPlugin extends CordovaPlugin {
|
|||||||
splashScreenView
|
splashScreenView
|
||||||
.animate()
|
.animate()
|
||||||
.alpha(0.0f)
|
.alpha(0.0f)
|
||||||
.setDuration(isFadeEnabled ? fadeDuration : 0)
|
.setDuration(fadeDuration)
|
||||||
.setStartDelay(isFadeEnabled ? 0 : fadeDuration)
|
.setStartDelay(0)
|
||||||
.setInterpolator(new AccelerateInterpolator())
|
.setInterpolator(new AccelerateInterpolator())
|
||||||
.setListener(new AnimatorListenerAdapter() {
|
.setListener(new AnimatorListenerAdapter() {
|
||||||
@Override
|
@Override
|
||||||
@ -159,6 +160,7 @@ public class SplashScreenPlugin extends CordovaPlugin {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void attemptCloseOnPageFinished() {
|
private void attemptCloseOnPageFinished() {
|
||||||
if (autoHide && delayTime == DEFAULT_DELAY_TIME) {
|
if (autoHide && delayTime == DEFAULT_DELAY_TIME) {
|
||||||
|
Loading…
Reference in New Issue
Block a user