cordova学习二:图标与启动屏幕设置

一、图标设置
在config.xml里配置icon标签设置app图标
src:图片存放路径
platform:支持平台
width:图标宽度
height:图标高度
density:android下针对不同分辨率适配的图标

应用于所有平台:

Amazon Fire OS:

 
              
              
              
              
     

Android:

  
              
              
              
              
     
BlackBerry10:


    
    

See BlackBerry's documentation for targeting multiple sizes and locales. [ http://developer.blackberry.com/html5/documentation/icon_element.html]

Firefox OS:
     
              
     
iOS:

     
              
              
              
              
              
              
              
              
              
              
              
              
              
              
              
              
              
              
              
              
              
              
              
              
              
              
     
Tizen:

     
              
     

Windows Phone8:

     
              
              
              
     
Windows8:

     
              
              
              
     

二、启动屏幕设置
图片文件放在www之外目录,支持平台:android、ios、wp8、windows8、blackberry10
设置图片路径后必须结合时间设置

    
    
    
    
    

    
    
    
    



    
    
    
    
    
    
    
    
    
    
    



    
    



    
    



    
    
    




cordova提供的屏幕插件:https://github.com/apache/cordova-plugin-splashscreen
cordova plugin add cordova-plugin-splashscreen

你可能感兴趣的:(学习笔记,移动开发)