gpt4 book ai didi

ios - 横向启动画面未加载

转载 作者:行者123 更新时间:2023-11-29 00:38:46 25 4
gpt4 key购买 nike

我的project/resources/splash/目录中有一个带有启动画面的phonegap应用程序。我的 iOS 项目可以很好地加载纵向启动画面,但是当我以横向模式加载应用程序时,它使用我的纵向启动画面,然后在启动画面加载后我得到一个白屏。

我意识到在我的日志中它一直说找不到名为 Default-Landscape 的闪屏图像,即使我已将/splash/目录中的横向图像重命名为 Default-Landscape .jpg 看起来它没有拉动图像。

enter image description here

关于如何让它发挥作用有什么见解吗?我的处理方式是错误的吗?

最佳答案

这在以前的版本中已被确认为错误,但现在已得到修复。尝试使用这个:

<gap:splash src="splash-xlarge-portrait.png" gap:qualifier="port-xhdpi">
<gap:splash src="splash-xlarge-landscape.png" gap:qualifier="land-xhdpi">
<icon src="icon-xlarge-english.png" gap:qualifier="en-xhdpi">
<icon src="icon-xlarge-french.png" gap:qualifier="fr-xhdpi">
<icon src="icon.png" gap:qualifier="">

对于 iOS:

<!-- iPhone and iPod touch -->
<splash src="Default.png" platform="ios" width="320" height="480" />
<splash src="Default@2x.png" platform="ios" width="640" height="960" />

<!-- iPhone 5 / iPod Touch (5th Generation) -->
<splash src="Default-568h@2x.png" platform="ios" width="640" height="1136" />

<!-- iPhone 6 -->
<splash src="Default-667h@2x.png" platform="ios" width="750" height="1334" />
<splash src="Default-Portrait-736h@3x.png" platform="ios" width="1242" height="2208" />
<splash src="Default-Landscape-736h@3x.png" platform="ios" width="2208" height="1242" />

<!-- iPad -->
<splash src="Default-Portrait.png" platform="ios" width="768" height="1024" />
<splash src="Default-Landscape.png" platform="ios" width="1024" height="768" />

<!-- Retina iPad -->
<splash src="Default-Portrait@2x.png" platform="ios" width="1536" height="2048" />
<splash src="Default-Landscape@2x.png" platform="ios" width="2048" height="1536" />

关于ios - 横向启动画面未加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39986229/

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