import android.os.Bundle;
import org.apache.cordova.*;
public class RemindMeActivity extends DroidGap {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.setIntegerProperty("splashscreen", R.drawable.splash);
super.loadUrl("file:///android_asset/www/index.html", 10000);
}
}
4条答案
按热度按时间fykwrbwg1#
我没有注意到这个问题是关于Android的,下面是我的config.xml中的Android部分:
是的,苹果要容易得多!在Android上,它们通过名为“密度”的限定符来进行。
据我所知,PhoneGap Build现在只支持四个中的三个。ldpi,mdpi,hdpi和NOT xdpi(这就是为什么上面注解掉了它)。
据我所知,所有Android设备都会使用这四种尺寸中的一种。在数百种不同的设备上获得完美的宽高比可能有点挑战性,但有了这个你至少可以接近。
读到这里,我知道这是很多,但值得一阅读:http://developer.android.com/guide/practices/screens_support.html#support
PGB指南:http://build.phonegap.com/docs/config-xml
eulz3vhy2#
我们可以用三种方式设置它
1.透过config.xml
1.通过活动类设置属性
1.通过脚本
要参考更多的示例源代码示例源代码的例子为phonegap-build-set-splash-screen
http://getmebyclickme.blogspot.in/2013/10/phonegap-build-set-splash-screen-for.html
2skhul333#
这将帮助你显示闪屏使用phonegap
kninwzqo4#
这是我如何有他们我的PGB config.xml(你的文件夹结构和文件名将有所不同),这支持大多数IOS设备,我相信。多少启动图像你有?
Apple的指导方针:http://developer.apple.com/library/ios/#documentation/userexperience/conceptual/mobilehig/IconsImages/IconsImages.html
Phonegap构建指南:http://build.phonegap.com/docs/config-xml