作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这里的问题是如何在 PhoneGap 中允许单独的(横向和纵向)启动图像。
最佳答案
很长一段时间都找不到满意的答案,我终于花了几个小时弄乱它,并能够通过以下方式让它工作:为每个 android 尺寸定义两个项目 - 在肖像文件上,DON 'T 添加宽度和高度属性,并在景观上放置它们。
这是我的代码,以便其他人可以遵循:
编辑:下面的代码适用于 PHONE GAP 构建版本 2.7 到 3.0。对于较新的版本,请参阅 https://stackoverflow.com/a/24002601/700111和http://docs.phonegap.com/en/3.5.0/config_ref_images.md.html#Icons%20and%20Splash%20Screens .
这不起作用 - 当我在肖像文件上有宽度和高度时:
<gap:splash src="res/screen/android/screen-xhdpi-n7-landscape.png" gap:platform="android" gap:density="xhdpi" width="1280" height="800" />
<gap:splash src="res/screen/android/screen-xhdpi-landscape.png" gap:platform="android" gap:density="xhdpi" width="1280" height="720" />
<gap:splash src="res/screen/android/screen-hdpi-landscape.png" gap:platform="android" gap:density="hdpi" width="800" height="480" />
<gap:splash src="res/screen/android/screen-mdpi-landscape.png" gap:platform="android" gap:density="mdpi" width="480" height="320" />
<gap:splash src="res/screen/android/screen-ldpi-landscape.png" gap:platform="android" gap:density="ldpi" width="320" height="200" />
这是工作代码
<gap:splash src="res/screen/android/screen-xhdpi-portrait.png" gap:platform="android" gap:density="xhdpi"/>
<gap:splash src="res/screen/android/screen-xhdpi-n7-portrait.png" gap:platform="android" gap:density="xhdpi"/>
<gap:splash src="res/screen/android/screen-hdpi-portrait.png" gap:platform="android" gap:density="hdpi"/>
<gap:splash src="res/screen/android/screen-mdpi-portrait.png" gap:platform="android" gap:density="mdpi"/>
<gap:splash src="res/screen/android/screen-ldpi-portrait.png" gap:platform="android" gap:density="ldpi"/>
<gap:splash src="res/screen/android/screen-xhdpi-n7-landscape.png" gap:platform="android" gap:density="xhdpi" width="1280" height="800" />
<gap:splash src="res/screen/android/screen-xhdpi-landscape.png" gap:platform="android" gap:density="xhdpi" width="1280" height="720" />
<gap:splash src="res/screen/android/screen-hdpi-landscape.png" gap:platform="android" gap:density="hdpi" width="800" height="480" />
<gap:splash src="res/screen/android/screen-mdpi-landscape.png" gap:platform="android" gap:density="mdpi" width="480" height="320" />
<gap:splash src="res/screen/android/screen-ldpi-landscape.png" gap:platform="android" gap:density="ldpi" width="320" height="200" />
我能够使用此代码获得不同的横向和纵向文件。
希望这对某人有帮助!
--技术哥们
关于cordova - 如何将单独的纵向和横向启动图像添加到 Android config.xml 间隙 :splash,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16951297/
我是一名优秀的程序员,十分优秀!