我如何在项目中的splashscreentime下降?我尝试裁剪图像,但这似乎没有太大帮助。现在需要11秒。我将标准值更改为3000ms,没有帮助。这是一个Ionic2 Angular2应用。
在您的config.xml添加
中<preference name="AutoHideSplashScreen" value="false"/>
然后在您的app.component.ts中添加以下
initializeApp() {
this.platform.ready().then(() => {
// Okay, so the platform is ready and our plugins are available.
// Here you can do any higher level native things you might need.
StatusBar.styleDefault();
Splashscreen.hide();
}
}
这样,只有当您的应用程序准备就绪时,您的飞溅屏幕仅消失。这应该比10秒要快得多