cordova 图标设置

来源:互联网 发布:淘宝搜索广告位价格 编辑:程序博客网 时间:2024/06/15 06:19
一、图标设置
<icon src="res/ios/icon.png" platform="ios" width="57" height="57" density="mdpi" />
在config.xml里配置icon标签设置app图标
src:图片存放路径
platform:支持平台
width:图标宽度
height:图标高度
density:android下针对不同分辨率适配的图标

应用于所有平台:
<icon src="res/icon.png" />


<?xml version='1.0' encoding='utf-8'?><widget id="com.example.hello" version="1.0.0" 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="*" />    <allow-intent href="http://*/*" />    <allow-intent href="https://*/*" />    <allow-intent href="tel:*" />    <allow-intent href="sms:*" />    <allow-intent href="mailto:*" />    <allow-intent href="geo:*" />    <icon src="res/icon/icon.png" />    <platform name="android">        <allow-intent href="market:*" />    </platform>    <platform name="ios">        <allow-intent href="itms:*" />        <allow-intent href="itms-apps:*" />    </platform>    <preference name="SplashScreen" value="screen" />    <preference name="SplashScreenDelay" value="3000" />    <preference name="SplashShowOnlyFirstTime" value="true" />    <engine name="android" spec="^6.3.0" />    <plugin name="cordova-plugin-whitelist" spec="^1.3.2" />    <plugin name="cordova-plugin-camera" spec="^2.4.1" />    <plugin name="cordova-plugin-splashscreen" spec="^4.0.3" />    <plugin name="cordova-plugin-file" spec="^4.3.3" />    <plugin name="cordova-plugin-file-transfer" spec="^1.6.3" />    <plugin name="cordova-plugin-media-capture" spec="^1.4.3" />    <plugin name="cordova-plugin-network-information" spec="^1.3.3" />    <plugin name="cordova-plugin-dialogs" spec="^1.3.3" />    <plugin name="cordova-plugin-vibration" spec="^2.1.5" /></widget>


原创粉丝点击