码迷,mamicode.com
首页 > 移动开发 > 详细

Android PendingIntent的使用

时间:2017-05-07 16:10:06      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:意思   目的   动作   oid   新建   etl   send   提示   reference   

pendingIntent字面意义:等待的,未决定的Intent。
要得到一个pendingIntent对象,用法类的静态方法 getActivity(Context, int, Intent, int)getBroadcast(Context, int, Intent, int)getService(Context, int, Intent, int)  分别相应着Intent的3个行为。跳转到一个activity组件、打开一个广播组件和打开一个服务组件。
參数有4个。比較重要的事第三个和第一个。其次是第四个和第二个。

能够看到。要得到这个对象,必须传入一个Intent作为參数,必须有context作为參数。
pendingIntent是一种特殊的Intent。

基本的差别在于Intent的运行立马的。而pendingIntent的运行不是立马的。pendingIntent运行的操作实质上是參数传进来的Intent的操作。可是使用pendingIntent的目的在于它所包括的Intent的操作的运行是须要满足某些条件的。
基本的使用的地方和样例:通知Notificatio的发送,短消息SmsManager的发送和警报器AlarmManager的运行等等。

Android的状态栏通知(Notification)

假设须要查看消息,能够拖动状态栏到屏幕下方就可以查看消息。

步骤:

获取通知管理器NotificationManager,它也是一个系统服务

建立通知Notification notification = new Notification(icon, null, when);

为新通知设置參数(比方声音,震动。灯光闪烁)

把新通知加入到通知管理器

发送消息的代码例如以下:

//获取通知管理器

NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE)

int icon = android.R.drawable.stat_notify_chat;

long when = System.currentTimeMillis();//通知发生的时间为系统当前时间

//新建一个通知,指定其图标和标题

Notification notification = new Notification(icon, null, when);//第一个參数为图标,第二个參数为短暂提示标题,第三个为通知时间

notification.defaults = Notification.DEFAULT_SOUND;//发出默认声音

notification.flags |= Notification.FLAG_AUTO_CANCEL;//点击通知后自己主动清除通知

Intent openintent = new Intent(this, OtherActivity.class);

PendingIntent contentIntent = PendingIntent.getActivity(this, 0, openintent, 0);//当点击消息时就会向系统发送openintent意图

notification.setLatestEventInfo(this, “标题”, “我是内容", contentIntent);

mNotificationManager.notify(0, notification);//第一个參数为自己定义的通知唯一标识

 

重点是setLatestEventInfo( )方法的最后一个參数。!!!

它是一个PendingIntent!!!!!!!!!

这里使用到了PendingIntent(pend本意是待定,不确定的意思)

PendingIntent能够看作是对Intent的包装。PendingIntent主要持有的信息是它所包装的Intent和当前ApplicationContext

正因为PendingIntent中保存有当前ApplicationContext,使它赋予带他程序一种运行的Intent的能力,就算在运行时当前Application已经不存在了,也能通过存在PendingIntent里的Context照样运行Intent

 

PendingIntent的一个非常好的样例:

SmsManager的用于发送短信的方法:

sendTextMessage(destinationAddress, scAddress, text, sentIntent, deliveryIntent);

第一个參数:destinationAddress 对方手机号码

第二个參数:scAddress 短信中心号码 一般设置为空

第三个參数:text 短信内容

第四个參数:sentIntent推断短信是否发送成功,假设你没有SIM卡,或者网络中断,则能够通过这个itent来推断。注意强调的是“发送”的动作是否成功。

那么至于对于对方是否收到,另当别论

第五个參数:deliveryIntent当短信发送到收件人时。会收到这个deliveryIntent。即强调了“发送”后的结果

就是说是在"短信发送成功""对方收到此短信"才会激活 sentIntentdeliveryIntent这两个Intent。这也相当于是延迟运行了Intent


上面两个样例能够理解,PendingIntent就是一个能够在满足一定条件下运行的Intent,它相比于Intent的优势在于自己携带有Context对象,这样他就不必依赖于某个activity才干够存在。

Android PendingIntent的使用

标签:意思   目的   动作   oid   新建   etl   send   提示   reference   

原文地址:http://www.cnblogs.com/wgwyanfs/p/6821042.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!