iOS 使用 phonegap 构建的本机应用程序以较低的分辨率打开
iOS native app build with phonegap opens in lower resolution
当我在我的 iPad Pro 12.9in 的浏览器中打开我的应用程序,同时在我的桌面上使用 PhoneGap 应用程序提供它时,它会正常打开。但是当我安装应用程序并打开它时,它以较低的分辨率打开。我看到这可能是因为分辨率较低的闪屏,但我为 iPad pro 设计了一个分辨率为 2732x2048 的新闪屏。
我是否应该更改 config.xml 文件中的某些内容?我已经尝试了很多,但仍然没有找到解决方案。
These are the imported splash images for iOS with their resolutions
This is how the app looks when installed (1)
This is how the app looks when installed (2)
This is how the app should look - like it is now in the browser (1)
This is how the app should look - like it is now in the browser (2)
您是否已将新的启动画面添加到 config.xml?
您需要在该文件中包含以下条目:
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
<splash src="<your path>/Default@2x~universal~anyany.png" />
<splash src="<your path>/Default@2x~universal~comany.png" />
<splash src="<your path>/Default@2x~universal~comcom.png" />
<splash src="<your path>/Default@3x~universal~anyany.png" />
<splash src="<your path>/Default@3x~universal~anycom.png" />
<splash src="<your path>/Default@3x~universal~comany.png" />
</platform>
在我的例子中,路径是 <project>/res/ios
要使用这些,您至少需要 CLI 7.0.1 或 7.1.0 才能定位 iOS Phonegap 版本 4.4.0
附加信息:
当我在我的 iPad Pro 12.9in 的浏览器中打开我的应用程序,同时在我的桌面上使用 PhoneGap 应用程序提供它时,它会正常打开。但是当我安装应用程序并打开它时,它以较低的分辨率打开。我看到这可能是因为分辨率较低的闪屏,但我为 iPad pro 设计了一个分辨率为 2732x2048 的新闪屏。
我是否应该更改 config.xml 文件中的某些内容?我已经尝试了很多,但仍然没有找到解决方案。
These are the imported splash images for iOS with their resolutions
This is how the app looks when installed (1)
This is how the app looks when installed (2)
This is how the app should look - like it is now in the browser (1)
This is how the app should look - like it is now in the browser (2)
您是否已将新的启动画面添加到 config.xml?
您需要在该文件中包含以下条目:
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
<splash src="<your path>/Default@2x~universal~anyany.png" />
<splash src="<your path>/Default@2x~universal~comany.png" />
<splash src="<your path>/Default@2x~universal~comcom.png" />
<splash src="<your path>/Default@3x~universal~anyany.png" />
<splash src="<your path>/Default@3x~universal~anycom.png" />
<splash src="<your path>/Default@3x~universal~comany.png" />
</platform>
在我的例子中,路径是 <project>/res/ios
要使用这些,您至少需要 CLI 7.0.1 或 7.1.0 才能定位 iOS Phonegap 版本 4.4.0
附加信息: