add by zhj: 下面的几篇文章也非常好,http://www.raywenderlich.com/32960/apple-push-notification-services-in-ios-6-tutorial-part-1http://www.raywenderlich.com/32963...
分类:
移动开发 时间:
2014-08-12 21:27:05
阅读次数:
335
二:在开放的过程中,尽量把工具类,BaseActivity 放在指定的位置,
DateFormat
Bitmap
Notification
Shared Preference
Environment
Device
三:
2.2 Task管理
线程只是一种机制,保证我们要完成的任务不运行在UI线程(也就是说不阻塞UI),完成的任务才是我们关注的核心,因此,我们可以通...
分类:
移动开发 时间:
2014-08-11 15:14:02
阅读次数:
247
android 4.4 framework notification layout 相关字体大小* title: notification_title_text_size: 18dp* content: notification_text_size: 14dp* subtext:...
分类:
移动开发 时间:
2014-08-09 18:11:08
阅读次数:
215
Android Notification通知详解
Notification.Builder类中提供的方法:
builder.setAutoCancel(); 设置点击通知后,状态栏自动删除通知。
builder.setSmallIcon(R.drawable.alert); 设置通知小图标
builder.setLargeIcon(R.drawable.alert2); 设置通知大图标
builder.setContentTitle("标题"); 设置通知标题
builder.setContentText(...
分类:
移动开发 时间:
2014-08-09 11:39:17
阅读次数:
516
Facebook Chat, offered a nice set of software engineering challenges:Real-time presence notification:The most resource-intensive operation performed i...
分类:
其他好文 时间:
2014-08-08 17:26:26
阅读次数:
311
Onsctl
Onsctl这个命令是用来管理ONS(Oracle Notification Service)是OracleClustser实现FAN Event Push模型的基础。
在RAC环境下,需要使用$CRS_HOME下的ONS,而不是$ORACLE_HOME下的ONS,这点需要注意。配置文件位于$CRS_HOME/opmn/conf/ons.config。
[oracle@felix2 conf]$ pwd
/u01/oracle/10.2.0/crs_1/opmn/conf
[ora...
分类:
数据库 时间:
2014-08-08 12:39:46
阅读次数:
475
在实现消息推送之前先提及几个于推送相关概念,如下图:1、 Provider:就是为指定IOS设备应用程序提供Push的服务器,(如果IOS设备的应用程序是客户端的话,那么Provider可以理解为服务端[消息的发起者]);2、 APNS:Apple Push Notification Service...
分类:
移动开发 时间:
2014-08-07 12:40:39
阅读次数:
269
iOS消息推送的工作机制可以简单的用下图来概括:Provider是指某个iPhone应用程序的Push服务器,APNS是Apple Push Notification Service的缩写,是苹果的服务器。上图可以分为三个阶段:第一阶段:应用程序把要发送的消息、目的iPhone的标识打包,发给APN...
分类:
移动开发 时间:
2014-08-07 12:37:59
阅读次数:
420
Notification是智能手机应用编程中非常常用的一种传递信息的机制,而且可以非常好的节省资源,不用消耗资源来不停地检查信息状态(Pooling),在iOS下应用分为两种不同的Notification种类,本地和远程。本地的Notification由iOS下NotificationManager...
分类:
移动开发 时间:
2014-08-06 22:19:52
阅读次数:
390
epoll - I/O event notification facility在linux的网络编程中,很长的时间都在使用select来做事件触发。在linux新的内核中,有了一种替换它的机制,就是epoll。 相比于select,epoll最大的好处在于它不会随着监听fd数目的增长而降低效率。因为...
分类:
其他好文 时间:
2014-08-06 18:15:41
阅读次数:
326