离子电容器启动屏幕出现问题。我试着使用官方文件,可以在这里找到。然而,文档中似乎没有一个例子对我来说是可行的
我尝试过的一个例子是我的电容器中的这段代码。config.json:
"plugins": {
"SplashScreen": {
"launchShowDuration": 10000,
"backgroundColor": "#ff00ff"
}
}
该应用程序的行为与以前完全一样,这可能是默认设置(启动显示3秒,然后加载应用程序(。
我还尝试过禁用自动隐藏等功能,但似乎没有任何代码真正起到任何作用,该应用程序仍然像以前一样运行。有什么想法吗?
import { SplashScreen } from '@capacitor/splash-screen';
// Hide the splash (you should do this on app launch)
await SplashScreen.hide();
// Show the splash for an indefinite amount of time:
await SplashScreen.show({
autoHide: false
});
// Show the splash for two seconds and then automatically hide it:
await SplashScreen.show({
showDuration: 2000,
autoHide: true
});
https://capacitorjs.com/docs/apis/splash-screen?#example
注意:如果您使用设备,请检查您的wifi是否与笔记本电脑相同
´ionic capacitor run android -l --host=**192.168.X.XX**´ <br>
´ionic capacitor run android -l --host=**ADDRESS_IP**´
你可以使用电容器的Plugins.SplashScreen.hide
方法,我在这个答案中解释了它:https://stackoverflow.com/a/62063934/6695569.