//发送通知UILocalNotification*notification=[[UILocalNotificationalloc]init];if(notification!=nil){NSDate*now=[NSDatenew];notification.fireDate=[nowdateByA...
分类:
其他好文 时间:
2015-05-13 11:56:57
阅读次数:
113
在上一篇文章中介绍了介绍了观察者模式的定义和一些基本概念,观察者模式在 android开发中应用还是非常广泛的,例如android按钮事件的监听、广播等等,在任何类似于新闻-订阅的模式下面都可以使用。从某种意义上面来说android有点像JAVA EE的WEB页面,在都需要提供View层用于进行操作,在多个页面之间传递数据发送通知都是一件很麻烦的事情。
在android中从A页面跳转到B...
分类:
移动开发 时间:
2015-05-09 23:42:01
阅读次数:
354
社区站点建立好以后,有如下常用的功能,并且需要管理员提前做设置。
@功能。
@功能是在微博和社交网站上广泛使用的符号。在@后面输入人名,系统会自动搜索到这个人,并且给其发送通知邮件。
要使用@功能,首先要保证服务器场的outgoing
邮件是配置好的,然后要保证User Profile Service Application是开启的。...
分类:
其他好文 时间:
2015-05-01 14:48:02
阅读次数:
166
/**
* 发送通知
*/
public void setNotification(){
/** start */
//1.得到NotificationManager:
mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFI...
分类:
移动开发 时间:
2015-04-21 13:07:52
阅读次数:
207
发送通知这次邮件我们将会讨论怎么获取电量状态在安卓设备上,为了完成这个目标,我们将会使用到广播。What is BroadcastReceiver?A broadcast receiver is an Android component which allows you to register fo...
分类:
移动开发 时间:
2015-04-20 14:44:40
阅读次数:
287
最近在做的项目需要cell里面的数据需要和后台实时交互。而collectionview reload会整体刷新。//m层 发送通知[[NSNotificationCenter defaultCenter]postNotificationName:@"CartProUpdate" object:sel...
分类:
Web程序 时间:
2015-04-02 06:37:14
阅读次数:
269
先在消息中心注册通知
[[NSNotificationCenter defaultCenter] addObserver:observer selector:@selector(”要执行的函数“)
name:@"NAME"(需要观察的对象) object:nil];
然后发送通知
[[NSNotificationCenter
defaultCenter] postNotifica...
分类:
移动开发 时间:
2015-03-18 17:59:46
阅读次数:
132
最近工作中,涉及到的一些解决方案,发现引入消息队列会更好更优雅地解决问题。业务场景:用户新装修的店铺发布后,需要相关系统做一些对应的工作:缓存系统做数据清理,通知依赖的第三方系统...当前解决方案:店铺发布系统异步编码实现相关逻辑;现实问题:1、采用第三方系统提供接口供店铺系统发送通知:店铺系统需要...
分类:
其他好文 时间:
2015-03-11 07:02:21
阅读次数:
506
监听者模式是观察者模式实现的一种,也属于Publish/Subscribe模式,被监听者触发某一事件后向监听者发送通知。在java中最常用的就是在编写GUI程序时,控件的事件监听了。 通常在编写java的GUI程序时,需要在控件上...
分类:
其他好文 时间:
2015-02-27 13:44:16
阅读次数:
191
一个小demo。点击 发送通知 按钮,则发送通知到设备的通知栏。点击 清除通知 则清除通知栏上的消息通知。
package zhangphil.notification;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.app.Activit...
分类:
移动开发 时间:
2015-02-20 17:30:30
阅读次数:
226