`
forhope
  • 浏览: 360376 次
  • 性别: Icon_minigender_1
  • 来自: 帝都
社区版块
存档分类
最新评论
文章列表

Android Activity Task

引用A task is a collection of activities that users interact with when performing a certain job. The activities are arranged in a stack (the "back stack"), in the order in which each activity is opened 任务就是执行一个特定工作时,和用户进行交互的activities的集合,这些activities在一个栈中排序。以每个activity的开启顺序进行排序
http://blog.csdn.net/luoshengyang/article/details/6642463 下面讲述下Android虚拟机的组成部分和一些构造原理,在介绍Android虚拟机之前,先要了解下什么是Android操作系统,所谓的Android:是基于Linux内核的软件平台和操作系统,早期由Google开 ...

Android流量统计

static long getMobileRxBytes() //获取通过Mobile连接收到的字节总数,不包含WiFi static long getMobileRxPackets() //获取Mobile连接收到的数据包总数 static long getMobileTxBytes() //Mobile发送的总字节数 static long getMobileTxPackets() //Mobile发送的总数据包数 static long getTotalRxBytes() //获取总的接受字节数,包含Mobile和WiFi等 stati ...

OOAD

    博客分类:
  • OOAD
http://www.uml.org.cn/mxdx/mxdx.asp http://www.hudong.com/wiki/OOAD http://www.cnblogs.com/leetle/archive/2006/12/10/588246.html http://www.iturls.com/UML/class.asp http://space.itpub.net/13633641/viewspace-622591 单一职责原则:降低耦合性 开放闭合原则:对扩展开放,对修改闭合。抽象。 Liskov替换原则:子类型必须能替换基类。防止继承的混乱。 接口分离原则:避免包含过 ...

Andriod WIFI模块

http://blog.163.com/wxiongn@126/blog/static/11788203820102262748358/ http://www.liweihong.net/tag/wifi http://hi.baidu.com/lwpping/blog/item/47c037223139a64e9922ed34.html

Android Service相关

http://developer.android.com/reference/android/app/Service.html http://developer.android.com/guide/topics/fundamentals/processes-and-threads.html http://www.cnblogs.com/tekkaman/archive/2011/06/08/2074787.html
一个成功的Android应用程序往往提供一个突出的用户体验。当Android团队构建了一个有着健壮核心的系统后,大多数的用户体验将来源于用户和应用程序之间的的交互。显著的用户体验体现在三个核心特征上,即快速、响应、无缝。当然,每一个平台都曾经有过类似的三种性质。尽管如此,每个平台实现这些特性的方式也有所不同。下面将会简单地介绍在Android平台下面你的应用程序将如何达到这些要求。 (1)快速(Fast) 基于Android平台的设备一定是嵌入式设备,它不仅仅是一部电话,还是一个小型的手持电脑。在编写Android程序时不仅要时刻考虑执行的效率,还要考虑电池的续航能力。一般来说,高效的代码意 ...

sqlite工具类

package com.asc.db; import android.content.ContentValues; import android.content.Context; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteOpenHelper; /** * 数据库公共类,提供基本数据库操作 * * @author raymon * */ public clas ...
package com.ksoaptest.util; import java.lang.reflect.Field; import java.util.ArrayList; import java.util.Date; import java.util.List; import org.ksoap2.SoapEnvelope; import org.ksoap2.serialization.SoapObject; import org.ksoap2.serialization.SoapSerializationEnvelope; import org.ksoap2. ...

ProgressBar教程

http://blog.csdn.net/Android_Tutor/article/details/5695170 DB: http://mobile.51cto.com/hot-299743.htm http://disanji.net/2011/04/03/android-use-simplecursoradapter/

Wlan设备简介

    博客分类:
  • Wlan
WLAN网络主要由WLAN终端设备(WLAN网络卡)、WLAN接入点设备(AP)、接入控制点(AC)、PORTAL服务器、RADIUS认证服务器、用户认证信息数据库、BOSS系统等组成。 (1)WLAN终端设备       WLAN终端设备需要安装WLAN网络卡,WLAN网络 ...

BIRT

    博客分类:
  • Java
http://www.springsource.org/BusinessIntelligenceWithSpringAndBIRT Script Data Source http://www.eclipse.org/birt/examples/scripting/scripteddatasource/ 引用 The Spring framework is a popular collection of architectural and implementation approaches that makes enterprise Java development easier. Core ...

JRadius

引用 JRadius is an open-source Java RADIUS client and server framework. The JRadius client helps you to implement RADIUS authentication and accounting in your Java application. The JRadius server is a RADIUS processing engine accessed through the rlm_jradius module in FreeRADIUS. JRadius is a projec ...
先看看quartz的持久化基本介绍: 引用 1 大家都清楚quartz最基本的概念就是job,在job内调用具体service完成具体功能,quartz需要把每个job存储起来,方便调度,quartz存储job方式就分三种,我们最常用的也是quartz默认的是RAMJobStore,RAMJobStore顾名思义就是把job的相关信息存储在内存里,如果用spring配置quartz的job信息的话,所有信息是配置在xml里,当spirng context启动的时候就把xml里的job信息装入内存。这一性质就决定了一旦JVM挂掉或者容器挂掉,内存中的job信息就随之消失,无法持久化。另外两种方式 ...
字段 允许值 允许的特殊字符 秒 0-59 , - * / 分 0-59 , - * / 小时 0-23 , - * / 日期 1-31 , - * ? / L W C 月份 1-12 或者 JAN-DEC , - * / 星期 1-7 或者 SUN-SAT , - * ? / L C # 年(可选) 留空, 1970-2099 , - * / The '*' character is used to specify all values. For example, "*" in the minute fiel ...
Global site tag (gtag.js) - Google Analytics