iPhone 6 闪屏几秒钟后调整大小
Posted
技术标签:
【中文标题】iPhone 6 闪屏几秒钟后调整大小【英文标题】:iPhone 6 splash screen resized after few second 【发布时间】:2016-03-03 07:37:02 【问题描述】:初始屏幕起初看起来正常(适合),然后在 2 秒左右后调整大小/拉伸到屏幕右侧
我仅使用 phonegap 开发 ios 应用程序(无 xCode)
我用于测试的 iPhone 6 使用的是 iOS 9.2.1
这里是 config.xml:
<widget xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0" id="com.polri.polisiku" version="1.0.0">
<name>PolisiKu</name>
<description>PolisiKu adalah aplikasi pencari pos polisi terdekat dari posisi user.</description>
<author href="http://polri.go.id" email="mabes@polri.go.id">Divti Polri</author>
<content src="index.html"/>
<preference name="permissions" value="none"/>
<preference name="orientation" value="portrait"/>
<preference name="target-device" value="handset"/>
<preference name="fullscreen" value="true"/>
<preference name="webviewbounce" value="false"/>
<preference name="prerendered-icon" value="true"/>
<preference name="stay-in-webview" value="false"/>
<preference name="StatusBarOverlaysWebView" value="true" />
<preference name="StatusBarStyle" value="lightcontent" />
<preference name="detect-data-types" value="true"/>
<preference name="exit-on-suspend" value="false"/>
<preference name="show-splash-screen-spinner" value="true"/>
<preference name="auto-hide-splash-screen" value="true"/>
<preference name="disable-cursor" value="false"/>
<preference name="android-minSdkVersion" value="14"/>
<preference name="android-installLocation" value="auto"/>
<plugin name="cordova-plugin-whitelist" spec="1.2.1" />
<plugin name="org.apache.cordova.battery-status" source="pgb" spec="0.2.12" />
<plugin name="org.apache.cordova.camera" source="pgb" spec="0.3.6" />
<plugin name="org.apache.cordova.console" source="pgb" spec="0.2.13" />
<plugin name="org.apache.cordova.contacts" source="pgb" spec="0.2.16" />
<plugin name="org.apache.cordova.device" source="pgb" spec="0.3.0" />
<plugin name="org.apache.cordova.device-motion" source="pgb" spec="0.2.11" />
<plugin name="org.apache.cordova.device-orientation" source="pgb" spec="0.3.11" />
<plugin name="org.apache.cordova.dialogs" source="pgb" spec="0.3.0" />
<plugin name="org.apache.cordova.file" source="pgb" spec="1.3.3" />
<plugin name="org.apache.cordova.file-transfer" source="pgb" spec="0.5.0" />
<plugin name="org.apache.cordova.geolocation" source="pgb" spec="0.3.12" />
<plugin name="org.apache.cordova.globalization" source="pgb" spec="0.3.4" />
<plugin name="org.apache.cordova.inappbrowser" source="pgb" spec="0.6.0" />
<plugin name="org.apache.cordova.media" source="pgb" spec="0.2.16" />
<plugin name="org.apache.cordova.media-capture" source="pgb" spec="0.3.6" />
<plugin name="org.apache.cordova.network-information" source="pgb" spec="0.2.15" />
<plugin name="org.apache.cordova.splashscreen" source="pgb" spec="1.0.0" />
<plugin name="org.apache.cordova.statusbar" source="pgb" spec="0.1.4" />
<plugin name="org.apache.cordova.vibration" source="pgb" spec="0.3.13" />
<icon src="icon.png" />
<splash src="splash.png" />
<icon src="res/icon/ios/icon-57.png" gap:platform="ios" />
<icon src="res/icon/ios/icon-72.png" gap:platform="ios" />
<icon src="res/icon/ios/icon-57-2x.png" gap:platform="ios" />
<icon src="res/icon/ios/icon-72-2x.png" gap:platform="ios" />
<splash src="res/screen/ios/screen-iphone-portrait.png" platform="ios" />
<splash src="res/screen/ios/screen-iphone-landscape.png" platform="ios" />
<splash src="res/screen/ios/screen-iphone-portrait-2x.png" platform="ios" />
<splash src="res/screen/ios/screen-iphone-landscape-2x.png" platform="ios" />
<!-- iPhone 5 / iPod Touch (5th Generation) -->
<splash src="res/screen/ios/screen-iphone-portrait-568h-2x.png" platform="ios" />
<splash src="res/screen/ios/screen-iphone-landscape-568h-2x.png" platform="ios" />
<!-- iPhone 6 -->
<splash src="res/screen/ios/Default-667h@2x~iphone.png" platform="ios" />
<splash src="res/screen/ios/Default-Landscape-667h@2x~iphone.png" platform="ios" />
<splash src="res/screen/ios/Default-736h@3x~iphone.png" platform="ios" />
<splash src="res/screen/ios/Default-Landscape-736h@3x~iphone.png" platform="ios" />
<!-- iPad -->
<splash src="res/screen/ios/screen-ipad-portrait.png" platform="ios" />
<splash src="res/screen/ios/screen-ipad-landscape.png" platform="ios" />
<!-- Retina iPad -->
<splash src="res/screen/ios/screen-ipad-portrait-2x.png" platform="ios" />
<splash src="res/screen/ios/screen-ipad-landscape-2x.png" platform="ios" />
<access origin="*"/>
<plugin name="cordova-plugin-whitelist" version="1"/>
<allow-intent href="http://*/*"/>
<allow-intent href="https://*/*"/>
<allow-intent href="tel:*"/>
<allow-intent href="sms:*"/>
<allow-intent href="mailto:*"/>
<allow-intent href="geo:*"/>
<platform name="android">
<allow-intent href="market:*"/>
</platform>
<platform name="ios">
<allow-intent href="itms:*"/>
<allow-intent href="itms-apps:*"/>
</platform>
</widget>
这个问题与PhoneGap and iPhone 6 Plus splash screen issue 类似,但我尝试了所有答案,但没有任何效果,而且他们没有标记为已接受的答案。
提前感谢,抱歉英语不好
【问题讨论】:
你更新你的splash screen plugin
了吗?
另外,试试this
@Scar 我的初始屏幕是最新版本 1.0.0 。尝试了您的链接,结果只有白色的空白闪屏:(
look at this
@Scar 是的,请在发布问题之前阅读。如您所见,我已经在那里应用了答案,其中包括所有 14 个启动画面并将启动画面插件升级到最新版本。还是不行
【参考方案1】:
初始屏幕没有调整大小,因为状态栏而向下移动。
因此,如果您启用了状态栏,则图像必须短 20px,@2x 40px。
【讨论】:
我认为这不是问题,因为它向右移动而不是向下移动。不过,我尝试了你的建议,没有任何改变【参考方案2】:你在 pgb (1.0.0) 上使用最新的插件,但是太旧了 pgb 插件已被弃用,你必须从 NPM (3.2.1) 安装最新版本的插件
改变
<plugin name="org.apache.cordova.splashscreen" source="pgb" spec="1.0.0" />
到
<plugin name="cordova-plugin-splashscreen"/>
【讨论】:
以上是关于iPhone 6 闪屏几秒钟后调整大小的主要内容,如果未能解决你的问题,请参考以下文章
iPhone——获取 UITextField 调整后的字体大小
如何从 iphone 6 到 iphone 6+ 调整按钮图像和按钮大小
适用于 iPad / iPhone 5、6、6+ 的 UITableView 调整大小