- 浏览: 7325410 次
- 性别:
- 来自: 上海
文章分类
- 全部博客 (1546)
- 企业中间件 (236)
- 企业应用面临的问题 (236)
- 小布Oracle学习笔记汇总 (36)
- Spring 开发应用 (54)
- IBatis开发应用 (16)
- Oracle基础学习 (23)
- struts2.0 (41)
- JVM&ClassLoader&GC (16)
- JQuery的开发应用 (17)
- WebService的开发应用 (21)
- Java&Socket (44)
- 开源组件的应用 (254)
- 常用Javascript的开发应用 (28)
- J2EE开发技术指南 (163)
- EJB3开发应用 (11)
- GIS&Mobile&MAP (36)
- SWT-GEF-RCP (52)
- 算法&数据结构 (6)
- Apache开源组件研究 (62)
- Hibernate 学习应用 (57)
- java并发编程 (59)
- MySQL&Mongodb&MS/SQL (15)
- Oracle数据库实验室 (55)
- 搜索引擎的开发应用 (34)
- 软件工程师笔试经典 (14)
- 其他杂项 (10)
- AndroidPn& MQTT&C2DM&推技术 (29)
- ActiveMQ学习和研究 (38)
- Google技术应用开发和API分析 (11)
- flex的学习总结 (59)
- 项目中一点总结 (20)
- java疑惑 java面向对象编程 (28)
- Android 开发学习 (133)
- linux和UNIX的总结 (37)
- Titanium学习总结 (20)
- JQueryMobile学习总结 (34)
- Phonegap学习总结 (32)
- HTML5学习总结 (41)
- JeeCMS研究和理解分析 (9)
最新评论
-
lgh1992314:
[u][i][b][flash=200,200][url][i ...
看看mybatis 源代码 -
尼古拉斯.fwp:
图片根本就不出来好吧。。。。。。
Android文件图片上传的详细讲解(一)HTTP multipart/form-data 上传报文格式实现手机端上传 -
ln94223:
第一个应该用排它网关吧 怎么是并行网关, 并行网关是所有exe ...
工作流Activiti的学习总结(八)Activiti自动执行的应用 -
ZY199266:
获取不到任何消息信息,请问这是什么原因呢?
ActiveMQ 通过JMX监控Connection,Queue,Topic的信息 -
xiaoyao霄:
DestinationSourceMonitor 报错 应该导 ...
ActiveMQ 通过JMX监控Connection,Queue,Topic的信息
针对Phonegap开发中常用的DroidGap类继承自PhonegapActivity,PhonegapActivity继承自Activity。源代码如下:
/* * PhoneGap is available under *either* the terms of the modified BSD license *or* the * MIT License (2008). See http://opensource.org/licenses/alphabetical for full text. * * Copyright (c) 2005-2010, Nitobi Software Inc. * Copyright (c) 2010, IBM Corporation */ package com.phonegap.api; import android.app.Activity; import android.content.Intent; /** * The Phonegap activity abstract class that is extended by DroidGap. * It is used to isolate plugin development, and remove dependency on entire Phonegap library. */ public abstract class PhonegapActivity extends Activity { /** * Add a class that implements a service. * * @param serviceType * @param className */ abstract public void addService(String serviceType, String className); /** * Send JavaScript statement back to JavaScript. * * @param message */ abstract public void sendJavascript(String statement); /** * Launch an activity for which you would like a result when it finished. When this activity exits, * your onActivityResult() method will be called. * * @param command The command object * @param intent The intent to start * @param requestCode The request code that is passed to callback to identify the activity */ abstract public void startActivityForResult(IPlugin command, Intent intent, int requestCode); /** * Set the plugin to be called when a sub-activity exits. * * @param plugin The plugin on which onActivityResult is to be called */ abstract public void setActivityResultCallback(IPlugin plugin); /** * Load the specified URL in the PhoneGap webview. * * @param url The URL to load. */ abstract public void loadUrl(String url); }
在使用这个类启动Webapp移动项目时候可以配置许多东西,如下:
This class is the main Android activity that represents the PhoneGap application. It should be extended by the user to load the specific html file that contains the application. As an example: package com.phonegap.examples; import android.app.Activity; import android.os.Bundle; import com.phonegap.*; public class Examples extends DroidGap { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Set properties for activity super.setStringProperty("loadingDialog", "Title,Message"); // show loading dialog super.setStringProperty("errorUrl", "file:///android_asset/www/error.html"); // if error loading file in super.loadUrl(). // Initialize activity super.init(); // Clear cache if you want super.appView.clearCache(true); // Load your application super.setIntegerProperty("splashscreen", R.drawable.splash); // load splash.jpg image from the resource drawable directory super.loadUrl("file:///android_asset/www/index.html", 3000); // show splash screen 3 sec before loading app } }
DroidGap中可以配置的属性如下:
Properties: The application can be configured using the following properties:
//加载时候加载对话框的信息
// Display a native loading dialog when loading app. Format for value = "Title,Message".
// (String - default=null)
super.setStringProperty("loadingDialog", "Wait,Loading Demo...");
//加载对话对话框
// Display a native loading dialog when loading sub-pages. Format for value = "Title,Message".
// (String - default=null)
super.setStringProperty("loadingPageDialog", "Loading page...");
// Cause all links on web page to be loaded into existing web view,
// instead of being loaded into new browser. (Boolean - default=false)
super.setBooleanProperty("loadInWebView", true);
//加载相关的动画信息
// Load a splash screen image from the resource drawable directory.
// (Integer - default=0)
super.setIntegerProperty("splashscreen", R.drawable.splash);
//设置默认的背景色
// Set the background color.
// (Integer - default=0 or BLACK)
super.setIntegerProperty("backgroundColor", Color.WHITE);
//设置超时时间
// Time in msec to wait before triggering a timeout error when loading
// with super.loadUrl(). (Integer - default=20000)
super.setIntegerProperty("loadUrlTimeoutValue", 60000);
//设置请求错误时候的提示页面
// URL to load if there's an error loading specified URL with loadUrl().
// Should be a local URL starting with file://. (String - default=null)
super.setStringProperty("errorUrl", "file:///android_asset/www/error.html");
//是否在后台运行的功能
// Enable app to keep running in background. (Boolean - default=true)
super.setBooleanProperty("keepRunning", false);
Phonegap.xml的配置如下:
PhoneGap uses a configuration file at res/xml/phonegap.xml to specify the following settings.
//允许phonegap访问的路径和域
Approved list of URLs that can be loaded into DroidGap
<access origin="http://server regexp" subdomains="true" /
>
//日志的模式
Log level: ERROR, WARN, INFO, DEBUG, VERBOSE (default=ERROR)
<log level="DEBUG" />
Phonegap plugins:
PhoneGap uses a file at res/xml/plugins.xml to list all plugins that are installed.
Before using a new plugin, a new element must be added to the file.
name attribute is the service name passed to PhoneGap.exec() in JavaScript
value attribute is the Java class name to call.
<plugins>
<plugin name="App" value="com.phonegap.App"/>
...
</plugins>
评论
谢谢,分享,沟通交流
我想准确的判断页面加载是否完成,不知是否可有方法,不想延迟6秒
页面加载与网络有关,目前暂时没有相关的方法。
谢谢,分享,沟通交流
我想准确的判断页面加载是否完成,不知是否可有方法,不想延迟6秒
谢谢,分享,沟通交流
发表评论
-
phonegap contact API的使用
2012-07-10 14:23 2891没事开发一个phonegap通讯录使用: js如 ... -
phonegap开发中必备的帮助文档android apk
2012-07-08 16:48 2657在phonegap配置jquerymobile开发的人 ... -
jquerymobile 开发中几个样式问题
2012-07-07 15:16 24681.在jquerymobile开发中如果遇到中文乱码处理如下 ... -
【转】JavaScript编程模式:模块的力量
2012-07-06 12:50 1876块模式是一个常用的JavaScript编程模式。它 ... -
【转】JavaScript闭包和模块模式
2012-07-06 12:45 2051原文:http://www.joezimj ... -
【转】PhoneGap域名白名单说明书(Domain Whitelist Guide)
2012-07-05 17:31 9889概述Cordova项目中的域名白名单是一个用来控制外部域名访问 ... -
phonegap拍照的获取图片和设置问题
2012-07-05 17:10 12771目前项目中Android中第一次加载使用用 ... -
Native+WebApp中Phonegap调用Android Activity
2012-07-05 16:10 10986在项目采用Native+Web方式开发,A ... -
IOS Xcode4.3使用中几个问题
2012-07-04 15:36 18621. xcode 4.3.2 编译生成的app放在哪里? ... -
PhoneGap Xcode iOS入门教程
2012-07-04 15:30 7817文介绍了利用Xcode建立PhoneGap应用程 ... -
phonegap底层原理学习和研究(四)
2012-06-12 17:34 3086在phonegap ... -
phonegap底层原理学习和研究(二)
2012-06-11 11:07 3185转载自IBM中国开发网站: http://www.ibm ... -
【转】手机应用开发者需注意的20个事项
2012-05-30 10:54 1825你想要成为手机开发者吗?你的目标可能是从应用商店中赚取大 ... -
【转】8 个移动产品设计必备网站
2012-05-30 09:49 2151本文整理了8个移动设计资源丰富的网站,希望对你的开发设计工作有 ... -
HTML5 canvas实现电子签名
2012-05-29 17:27 226811.为什么要用到BASE64编码的图片信息 Base6 ... -
HTML5 的GEOLocation的API
2012-05-29 10:15 7157Geolocation API用于将用户当前地理位 ... -
jquerymobile 一个简单的九宫格实现(Gallery)
2012-05-28 11:10 9286jquerymobile实现一个简单的九宫格代码如下: ... -
phonegap底层原理学习和研究(一)
2012-05-21 14:16 12067在phonegap中,通过android和ip ... -
jquerymobile google地图插件jquery-ui-map
2012-05-20 16:12 5931最近要开发地图相关的功能,学习一下jquerymob ... -
【转】JQuerymobile 官方 资源和插件
2012-05-19 16:51 8096In this section, we have gat ...
相关推荐
PhoneGap底层原理的学习和研究是理解如何将这些Web技术转化为可在iOS、Android等平台上运行的本地应用的关键。在本篇文章中,我们将深入探讨PhoneGap的核心概念、工作流程以及其与Android平台的集成。 首先,...
本书“Phonegap Beginner’s Guide”旨在引导初学者入门PhoneGap开发,通过源码学习,我们可以更深入地理解其工作原理和应用实践。 1. **PhoneGap环境搭建** 在开始任何开发之前,首先需要安装PhoneGap的开发环境...
这里的焦点是“android_phonegap-0.9.5.1.jar”,这是PhoneGap的一个早期版本,对于理解其发展历史和技术原理至关重要。 PhoneGap 0.9.5.1是针对Android平台的一个版本,这个版本的发布标志着PhoneGap在Android生态...
PhoneGap使用JavaScript作为主要编程语言,但其底层依赖于Java的Android SDK,因此理解Java基础对调试和优化PhoneGap应用是有帮助的。 在"phonegap-master"这个文件名中,"master"可能指的是GitHub上的主分支,这...
这个项目基于开源技术PhoneGap,PhoneGap是一个使用HTML5、CSS3和JavaScript开发跨平台移动应用的框架,它允许开发者使用Web技术构建原生应用,而无需深入学习各种操作系统平台的底层细节。 首先,我们要理解...
PhoneGap是Cordova的一个品牌名称,两者主要的区别在于PhoneGap提供了更多的服务和工具,而Cordova更专注于底层框架。通过这些技术,开发者可以编写一次代码,运行在多个平台上,极大地提高了开发效率。 ### 2. ...