cordova启动页面和图标的设置

config.xml配置

  在cordova5.0版本以后,需要安装cordova-plugin-splashscreen插件以后才能修改和设置App的启动页面。

安装splashscreen插件:

  cordova plugin add cordova-plugin-splashscreen
  或
  cordova plugin add https://github.com/apache/cordova-plugin-splashscreen.git

基本配置

然后在你的config.xml文件中,添加以下代码

   
        
        
        
        
        
        

        
        
        
        
        
        
        
        
  
  
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        


        
        
        
        
        
        
        
        
        
        

其他配置

  • 自动隐藏启动页面AutoHideSplashScreen(默认为:true)

     
    
  • 显示启动页面的时间长度SplashScreenDelay(默认为:3000)

     
    

    若想禁用启动页面,可设置为:

    如果是iOS平台上想禁止启动页面,还需要添加

  • 启动页面淡入淡出的效果
    是否显示淡入淡出效果FadeSplashScreen(默认为:true)

     
    

    淡入淡出效果的执行时间长度FadeSplashScreenDuration(默认为:500)

    
    

    注意:FadeSplashScreenDuration时间是包含在SplashScreenDelay的时间里的。

  • 启动页面是否允许旋转(默认为:true)

    
    
  • 插件还可以通过js代码调用,提供有以下两个方法:

     navigator.splashscreen.hide();//隐藏启动页面
     navigator.splashscreen.show();//显示启动页面
    
  • 在Android平台下的特殊设置

     
     
    
      SplashMaintainAspectRatio:选填项,默认为false。当设置为true时,则不会拉伸图片来填充屏幕,会以图片原始比例显示图片。
      SplashShowOnlyFirstTime:选填项,默认为true。当设置为false时,APP通过navigator.app.exitApp()代码退出app后,在下次打开APP时,还会显示启动页面。若为true时,就不会出现。
    

图标文件夹内容

根据上面的配置信息,你需要准备好你自己的app图标和启动画面png文件:

存放路径不是以www文件夹为依据,而是以当前项目文件夹为依据

projectRoot
hooks
platforms
plugins
www
    css
    img
    js
res
    screen
        android
        ios
    icon
        android
        ios

应用程序图标

  • 安卓图标具体规格如下(存放目录:res/icon/android/)
    36*36   icon-36-ldpi.png
    48*48   icon-48-ldpi.png
    72*72   icon-72-ldpi.png
    96*96   icon-96-ldpi.png
    144*144 icon-144-ldpi.png
    192*192 icon-192-ldpi.png
  • iOS图标具体规格如下(存放目录:res/icon/ios/)
    29*29   icon-small.png
    58*58   [email protected]
    87*87   [email protected]
    40*40   icon-40.png
    80*80   [email protected]
    50*50   icon-50.png
    100*100 [email protected]
    60*60   icon-60.png
    120*120 [email protected]
    180*180 [email protected]
    72*72   icon-72.png
    144*144 [email protected]
    76*76   icon-76.png
    152*152 [email protected]

应用程序启动页面

  • 安卓启动画面具体规格如下(存放目录:res/screen/android/)
    960*720 splash-land-xhdpi.png
    640*480 splash-land-hdpi.png
    470*320 splash-land-mdpi.png
    426*320 splash-land-ldpi.png
    720*960 splash-port-xhdpi.png
    480*640 splash-port-hdpi.png
    320*470 splash-port-mdpi.png
    320*426 splash-port-ldpi.png
  • iOS启动画面具体规格如下(存放目录:res/screen/ios/)
    320*480 Default~iphone.png
    640*960 Default@2x~iphone.png
    768*1024    Default-Portrait~ipad.png
    1536*2048   Default-Portrait@2x~ipad.png
    1024*768    Default-Landscape~ipad.png
    2048*1536   Default-Landscape@2x~ipad.png
    640*1136    Default-568h@2x~iphone.png
    750*1334    Default-667h.png
    1242*2208   Default-736h.png
    2208*1242   Default-Landscape-736h.png

注:应用程序图标和应用程序启动页面 图片名称要和基本设置里面的 一一对应

你可能感兴趣的:(cordova启动页面和图标的设置)