gpt4 book ai didi

android - 在 Capacitor Ionic/Ionic React 中隐藏 Android 启动画面

转载 作者:行者123 更新时间:2023-12-05 08:06:19 37 4
gpt4 key购买 nike

我在使用 Ionic Capacitor Splashscreen 时遇到问题。我尝试使用可以找到的官方文档 here .但是,文档中的所有示例似乎都不适合我。

我尝试过的一个例子是我的 capacitor.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**´

关于android - 在 Capacitor Ionic/Ionic React 中隐藏 Android 启动画面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61267061/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com