`

PendingIntent用法(转的,方便以后查阅)

阅读更多

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 和当前 Application Context 。正由于 PendingIntent 中保存有当前 Application Context ,使它赋予带他程序一种执行的 Intent 的能力,就算在执行时当前 Application 已经不存在了,也能通过存在 PendingIntent 里的 Context 照样执行 Intent

 

PendingIntent 的一个很好的例子:

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

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

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

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

第三个参数: text  短信内容

第四个参数: sentIntent 判断短信是否发送成功,如果你没有 SIM 卡,或者网络中断,则可以通过这个 itent 来判断。注意强调的是“发送”的动作是否成功。那么至于对于对方是否收到,另当别论

分享到:
评论

相关推荐

    Android 之 PendingIntent用法介绍

    - `FLAG_ONE_SHOT`: 该PendingIntent仅使用一次,之后自动取消。 PendingIntent的生命周期与Intent关联,Intent中的数据(如动作、数据、类别、额外数据)都会影响到PendingIntent。例如,当我们更新Notification的...

    Notification的用法和PendingIntent使用

    Notification 和 PendingIntent 的使用 Notification 是 Android 系统中的一种机制,用于在系统状态栏中显示通知信息,通常用于提醒用户某些事件的发生。PendingIntent 则是 Android 中的一种机制,用于在特定的...

    PendingIntent 使用示例

    下面我们将深入探讨PendingIntent的使用方法,以及在Notification和短信发送中的具体应用。 首先,理解PendingIntent的基本概念。PendingIntent并不是一个可以直接执行的操作,而是一个持有意图(Intent)的对象,它...

    安卓之 (解决问题)PendingIntent和Intent的区别1

    - `FLAG_ONE_SHOT`:表示PendingIntent只能使用一次,使用后自动注销。 理解Intent和PendingIntent的差异以及它们在Android开发中的应用场景,对于优化应用的功能和提升用户体验至关重要。在设计和实现跨进程通信或...

    博客《详解PendingIntent》对应的有问题的PendingIntent源码

    在Android开发中,`PendingIntent`是一个非常关键的组件,它允许一个应用组件(如Activity、Service或BroadcastReceiver)在另一个应用组件中执行一个动作,即使原来的组件已经被销毁或者当前进程不可用。...

    android 服务 Service PendingIntent 通知

    `PendingIntent`主要用于跨进程通信,例如在通知(Notification)中使用,当用户点击通知时,可以通过`PendingIntent`启动一个Activity或Service。 通知(Notification)是Android系统向用户展示应用在后台运行状态...

    Android中pendingIntent的深入理解

    下面我们将深入探讨PendingIntent的工作原理、使用场景以及注意事项。 **一、PendingIntent的基本概念** PendingIntent是一个抽象的意图(Intent),它封装了Intent并附加了执行该Intent所需的权限。当其他应用或...

    AlarmManager、PendingIntent的使用\\附件Home监听十分钟后再次启动应用取消服务

    在实际应用中,`AlarmManager`和`PendingIntent`的组合使用可以实现复杂的定时任务管理,但需要注意的是,Android系统为了优化电池寿命,可能会对`AlarmManager`的触发时间进行调整。因此,在设计这类功能时,应考虑...

    PendingIntent

    2. **获取PendingIntent**:然后,使用PendingIntent的静态工厂方法,如getActivity()、getService()或getBroadcast(),并传入上下文(Context)、Intent、请求码(int)和标志(int)。请求码和标志用于区分不同的...

    自制发送短信程序--SmsManager与PendingIntent类的使用

    本文将详细介绍这两个关键类的使用方法以及如何结合它们来实现短信发送功能。 首先,`SmsManager`是Android SDK提供的一种系统服务,用于处理短信的发送和接收。它提供了多种方法来执行短信操作,例如发送单个短信...

    Intent和PendingIntent的区别

    简单的总结了Intent和PendtingIntent的区别,经常与alermanger 和notificationmanager一起使用。

    Android中PendingIntent的简要介绍.pdf

    创建PendingIntent通常使用以下静态方法: ```java PendingIntent.getBroadcast(Context context, int requestCode, Intent intent, int flags) PendingIntent.getActivity(Context context, int requestCode, ...

    Android编程实现PendingIntent控制多个闹钟的方法

    1. 当用户取消或修改闹钟时,应该使用 `PendingIntent.cancel()` 方法取消相应的 `PendingIntent`,以防止闹钟误触发。 2. 针对不同的Android版本,可能需要使用 `AlarmManager.setRepeating()` 或 `AlarmManager....

    博客《详解PendingIntent》有问题的源码第二部分

    在Android开发中,`PendingIntent`是一个至关重要的组件,它允许其他应用或系统服务代表我们的应用执行操作。...对于Android开发者来说,掌握`PendingIntent`的正确使用方法是提升应用质量的关键一步。

    mooc_android_lesson18_AlarmManager和PendingIntent实现定时提醒功能

    在实际应用中,我们首先创建一个`PendingIntent`,然后将其传递给`AlarmManager`的`set()`或`setRepeating()`方法,以设置闹钟。例如,如果我们希望创建一个定时提醒,我们可以这样做: ```java // 创建一个...

    android 自制发送短信程序 SmsManager与PendingIntent对象

    在Android平台上,开发一款能够发送短信的应用程序是常见的需求,这涉及到对SmsManager和PendingIntent对象的理解和使用。这两个核心组件是实现Android系统中短信发送功能的关键。 首先,我们来详细了解一下...

    实现可定时响起的闹钟----PendingIntent 与 AlarmManager 的运用

    4. **取消闹钟**:如果用户取消了闹钟,可以通过`AlarmManager`的`cancel()`方法和`PendingIntent`来取消已经设置的闹钟。 ```java alarmManager.cancel(pendingIntent); ``` 5. **更新闹钟**:如果用户修改了闹钟...

    Android中pendingIntent与Intent的深入分析

    创建PendingIntent通常使用以下三个静态方法: 1. `getActivity(Context, int, Intent, int)`: 创建一个用于启动Activity的PendingIntent。 2. `getBroadcast(Context, int, Intent, int)`: 创建一个用于启动...

Global site tag (gtag.js) - Google Analytics