我已经在这些愚蠢的启动画面上阅读了这么多我不知道为什么它不会工作......
我将要浏览所有内容,因为网上有很多不同的例子,但是对某些人而不是其他人工作......不知道为什么以及Adobe PhoneGap的某人是否正在阅读,您的文档令人震惊。
是的,我正在使用目前仅支持cordova 3.3的PhoneGap版本,因此我安装了该特定版本:
sudo npm install -g cordova@3.3
然后创建了一个项目
cordova create hello com.example.hello HelloWorld
然后因为我有一个android,添加android支持
cordova platform add android
然后我添加了SplashScreen插件
cordova plugin add org.apache.cordova.splashscreen
然后更新了config.xml文件:
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.example.hello" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>HelloWorld</name>
<description>
A sample Apache Cordova application that responds to the deviceready event.
</description>
<author email="dev@cordova.apache.org" href="http://cordova.io">
Apache Cordova Team
</author>
<content src="index.html" />
<access origin="*" />
<preference name="SplashScreen" value="splash" />
<preference name="SplashScreenDelay" value="5000" />
<preference name="Fullscreen" value="true" />
<preference name="Orientation" value="portrait" />
<preference name="DisallowOverscroll" value="true"/>
<feature name="SplashScreen">
<param name="android-package" value="org.apache.cordova.splashscreen.SplashScreen" />
</feature>
</widget>
然后构建了android包
cordova build android
然后添加了以下图片:
hello/platforms/android/res/drawable-hdpi/splash.png
hello/platforms/android/res/drawable-ldpi/splash.png
hello/platforms/android/res/drawable-mdpi/splash.png
hello/platforms/android/res/drawable-xhdpi/splash.png
然后压缩hello
文件夹
把它砸到https://build.phonegap.com,安装在我的手机上,没有闪屏...
任何帮助请!!!。