HybridApps

混合应用开发 欢迎界面 (二)

孤街浪徒 提交于 2019-12-06 01:22:27
本文将介绍如何为混合应用加入欢迎界面,本教程将在 教程一 的代码上进行修改。 为混合应用加入欢迎界面可以使用 Cordova SplashScreen 插件。 一,增加不同尺寸的 欢迎 界面图片资源 二,在config.xml增加SplashScreen插件配置 1, SplashScreen 属性value值对应图片名称 <preference name="splashscreen" value="splash" /> 2, SplashScreenDelay 属性value值表示欢迎界面关闭时间 <preference name="SplashScreenDelay" value="5000" /> 3,完整配置: <?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you

混合应用开发 Hello Html5 (一)

孤街浪徒 提交于 2019-12-03 05:08:27
本文是混合应用开发入门教程,如果您不懂原生应用开发,那么请尝试混合模式的应用开发。本教程将使用Android、Html5和Cordova进行样例讲解。 一,创建开发环境并下载开发包: 关于Android开发环境搭建请自行上网查询,本教程不作讲解。 使用的相关开发包: Android 4.4.2 Sencha Touch 2.4.x Cordova 3.4.0 二,创建混合应用 1 ,创建Android Project如下图所示,默认点击下一步直至完成创建。 2 ,在项目中加入cordova-3.4.0.jar。 3 ,在res文件夹下创建名为xml文件夹,接着在xml文件夹下创建名为config.xml文件,config.xml文件内容如下: <?xml version="1.0" encoding="UTF-8"?> <widget xmlns = "http://www.w3.org/ns/widgets" id = "io.cordova.helloCordova" version = "2.0.0"> <name>Hello Cordova</name> <description> A sample Apache Cordova application that responds to the deviceready event. </description>