Github user agrieve commented on a diff in the pull request: https://github.com/apache/cordova-plugin-splashscreen/pull/43#discussion_r27413236 --- Diff: src/android/SplashScreen.java --- @@ -151,13 +193,40 @@ public Object onMessage(String id, Object data) { } return null; } + + @Override + public void onConfigurationChanged(Configuration newConfig) { + super.onConfigurationChanged(newConfig); + + // Reload splash drawable when orientation changes if so configured. + if (newConfig.orientation != orientation) { + orientation = newConfig.orientation; + reloadDrawable(); + } + } - private void removeSplashScreen() { + private void reloadDrawable() { + if (isReloadOnOrientationChange() && splashImageView != null) { --- End diff -- Not sure if you answered in the other PR, but why not just always reload on configuration changes? It'll just no-op if there's no new image.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. --- --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org For additional commands, e-mail: dev-h...@cordova.apache.org