1.void set(int type , long triggerAtTime , PendingIntent operation ) : 设置在 triggerAtTime时间启动由operation参数指定的组件, 其中第一个参数指定定时服务的类型,该参数可接受如下值: ELAPSED_REA ...
分类:
移动开发 时间:
2016-06-23 12:32:19
阅读次数:
214
SMSManager短信管理器实现短信群发 ContactsContract AlertDialog PendingIntent ...
分类:
其他好文 时间:
2016-06-22 21:44:53
阅读次数:
210
SMSManager短信管理器发送短信 PendingIntent ...
分类:
其他好文 时间:
2016-06-22 20:36:12
阅读次数:
192
本案例知识是:后台执行定时任务。
Alarm机制:
一、创建LongRunningService类
package com.example.servicebestpractice;
import java.util.Date;
import android.app.AlarmManager;
import android.app.PendingIntent;
import android...
分类:
移动开发 时间:
2016-06-21 07:53:45
阅读次数:
179
Android通知Notification详解
Notification的使用大体步骤
Notification简介
PendingIntent简介
使用RemoteViews自定义Notification
更新与移除通知
设定提示响应
附录
Notification的使用大体步骤:1、 获取状态通知栏管理
2、 实例化通知栏构造器
3、 设置NotificationCompat.Buil...
分类:
移动开发 时间:
2016-06-21 06:51:57
阅读次数:
284
pendingIntent字面意义:等待的,未决定的Intent。 pendingIntent对象,使用方法类的静态方法 : getActivity(Context, int, Intent, int) >跳转到一个activity组件、 getBroadcast(Context, int, Int ...
分类:
移动开发 时间:
2016-06-03 18:59:20
阅读次数:
348
1.可以通过getActivity(Context context, int requestCode, Intent intent, int flags)系列方法从系统取得一个用于启动一个Activity的PendingIntent对象 2.可以通过getService(Context contex ...
分类:
其他好文 时间:
2016-05-25 23:53:18
阅读次数:
205
package com.example.demo;import android.app.Activity;
import android.app.PendingIntent;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
imp...
分类:
移动开发 时间:
2016-05-12 19:26:50
阅读次数:
263
一、定义 PendingIntent表示待定、等待、即将发生的意思。Intent表示的是立刻发生。 PendingIntent的主要方法: int requestCode:表示请求码,跟intent是一样的。 int flags:常见的类型 FLAG_ONE_SHOT:当前描述的PendingInt ...
分类:
其他好文 时间:
2016-04-24 17:08:57
阅读次数:
142
时间:2016-4-20 11:01:20描述:使用Notifaction时,使用到PendingIntent中使用intent传值的问题,接收Activity接收时获取到的内容为null。解决: flags有四个取值: int FLAG_CANCEL_CURRENT:如果该PendingInten... ...
分类:
其他好文 时间:
2016-04-20 15:08:50
阅读次数:
247