谁能告诉我如何创建 Splashscreen ??我正在使用 jdeveloper 11.1.2.4.0 和 cordova 2.2 .. 我已经按照 phonegap 文档中提到的每一个步骤进行操作。但我仍然无法创建splashscreen ..
这是我的类扩展 DroidGap
package mobile;
import android.os.Bundle;
import org.apache.cordova.DroidGap;
import android.R;
import android.app.Activity;
import oracle.adfmf.amx.event.ActionEvent;
import oracle.adfmf.framework.api.AdfmfContainerUtilities;
public class splashClass extends DroidGap
{
public splashClass() {
super();
}
public void onCreate(Bundle bundle) {
super.onCreate(bundle);
super.setIntegerProperty("splashscreen", R.drawable.splash);
this.setIntegerProperty("loadUrlTimeoutValue", 120000);
super.loadUrl("file:///assets/www/index.html",120000);
}
}
当我将 splash.png 文件添加到 drawable 中时,R.drawable.splash 显示错误,因为“在 drawable 中找不到类型或字段'splash'”。
但是当我从像“R.drawable.ic_delete”这样的drawable中获取之前添加的图像时,模拟器上没有显示同样的图像..只有黑屏出现..
谢谢..