基于Cordova的应用程序启动屏幕延迟不适用于Windows 10发布

时间:2018-04-27 08:14:32

标签: cordova uwp windows-10-universal splash-screen

我们正在开发基于Cordova的跨平台应用程序。对于启动画面行为,我们使用此插件“”cordova-plugin-splashscreen“version”5.0.2“。

我们希望启动画面在淡出之前显示10秒,但这在Windows 10商店应用版本中不起作用。以下是config.xml文件中的设置

<platform name="windows">
    <splash height="300" src="res/screen/windows/SplashScreen.scale-100.png" width="620" />
    <preference name="AutoHideSplashScreen" value="false" />
    <preference name="SplashScreenDelay" value="10000" />
    <preference name="SplashScreenBackgroundColor" value="0xFFFFFF" />
</platform>

通过这些设置,应用程序只会短暂显示启动画面,配置的值不会产生任何影响。

有趣的是属性“SplashScreenBackgroundColor”按预期工作。

通过一些讨论,我还在true和false之间切换了“AutoHideSplashScreen”值。但也没有影响。

有人知道如何解决这个问题吗?

0 个答案:

没有答案