Android通知栏的实现就是用到通知机制中的通知栏框架(Notificaiton),例如聊天后台消息的提示,本地闹钟播放器提示,以及推送的各种消息的显示,都离不开Notificaiton的使用,那么首先我们简单的介绍一下 Notificaiton。
Notificaiton的功能作用
1.长链接中显示接收到短消息、即使消息等信息 例如:QQ、微信、短信等;
2.显示各个APP客户端的推送消息,广告等 ;
3.显示后台运行的进度等,例如:音乐播放器,定位导航,下载进度等等;
Notificaiton一般结构
Notificaiton一般包含如下几个元素
标题 Title/Name
大图标 Icon/Photo
内容信息 MESSAGE
小图标 Secondary Icon
通知的时间 Timestamp(默认为系统发出通知的时间)
Notificaiton 简单使用
Notificaiton的使用 一般主要包含两个大类 :Notificaiton 和 NotificaitonManager
Notification:为通知信息类,它可以设置通知内容的各个属性
NotificationManager : 是一个系统的Service,是状态栏通知的管理类,通知的发送和消除就是通过它实现的。
创建通知
首先、我们要请出管理者NotificaitonManager,实例化
NotificationManager mNotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
因为是系统级的Service所以 我们要通过getSystemService来获取它。
其中我们经常使用的就是通过NotificaitonManager.notify()方法来创建通知,通过NotificaitonManager.cancle()方法清除对应通知,下面代码中会介绍。
然后、我们需要请出Notificaiton,实例化,让它帮我装好我们要显示的内容
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this);
实例化通知栏构造器NotificationCompat.Builder 通过它的各个方法来填装我们所需要的各种信息如下代码
-
NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(
this);
-
//设置小图标
-
.setSmallIcon(R.mipmap.icon)
-
//设置通知标题
-
.setContentTitle(
"测试中…………")
-
//设置通知内容
-
.setContentText(
"测试notification中的使用包括图标,内容,时间等")
-
//设置通知时间,默认为系统发出通知的时间,通常不用设置
-
.setWhen(System.currentTimeMillis());
然后我们通过构造器来创建出 Notification,并通过刚刚的管理者 NotificaitonManager发布通知
-
Notification notify = mBuilder .build();
-
mNotificationManager.notify(
1,notify );
这样一个简单的通知事项就建好了,但是这种通知几乎不会被使用者发觉,所以我们进一步延伸完善通知的使用,
给通知绘声绘色,让它能够通过各种方式来提醒你,也就是Notification的通知效果了;
Notificaiton 通知效果
Notification的通知效果主要包含几种方式:铃声,震动,提示灯
而且这些效果可以单独使用,也可以叠加使用
-
/**
-
* 展示有自定义铃声效果的通知
-
*/
-
private void showNotifyWithRing() {
-
NotificationCompat.Builder builder =
new NotificationCompat.Builder(
this)
-
.setSmallIcon(R.mipmap.ic_launcher)
-
.setContentTitle(
"我是伴有铃声效果的通知")
-
.setContentText(
"美妙么?安静听~")
-
//调用系统默认响铃,设置此属性后setSound()会无效
-
//.setDefaults(Notification.DEFAULT_SOUND)
-
//调用自己提供的铃声,位于 /res/values/raw 目录下
-
.setSound(Uri.parse(
"android.resource://com.littlejie.notification/" + R.raw.sound));
-
//另一种设置铃声的方法
-
//Notification notify = builder.build();
-
//调用系统默认铃声
-
//notify.defaults = Notification.DEFAULT_SOUND;
-
//调用自己提供的铃声
-
//notify.sound = Uri.parse("android.resource://com.littlejie.notification/"+R.raw.sound);
-
//调用系统自带的铃声
-
//notify.sound = Uri.withAppendedPath(MediaStore.Audio.Media.INTERNAL_CONTENT_URI,"2");
-
//mManager.notify(2,notify);
-
mManager.notify(
2, builder.build());
-
}
-
-
/**
-
* 展示有震动效果的通知,需要在AndroidManifest.xml中申请震动权限
-
* <uses-permission android:name="android.permission.VIBRATE" />
-
* 补充:测试震动的时候,手机的模式一定要调成铃声+震动模式,否则你是感受不到震动的
-
*/
-
private void showNotifyWithVibrate() {
-
long[] vibrate =
new
long[]{
0,
500,
1000,
1500};
-
NotificationCompat.Builder builder =
new NotificationCompat.Builder(
this)
-
.setSmallIcon(R.mipmap.ic_launcher)
-
.setContentTitle(
"我是伴有震动效果的通知")
-
.setContentText(
"颤抖吧,凡人~")
-
//使用系统默认的震动参数,会与自定义的冲突
-
//.setDefaults(Notification.DEFAULT_VIBRATE)
-
//自定义震动效果
-
.setVibrate(vibrate);
-
//另一种设置震动的方法
-
//Notification notify = builder.build();
-
//调用系统默认震动
-
//notify.defaults = Notification.DEFAULT_VIBRATE;
-
//调用自己设置的震动
-
//notify.vibrate = vibrate;
-
//mManager.notify(3,notify);
-
mManager.notify(
3, builder.build());
-
}
-
-
/**
-
* 显示带有呼吸灯效果的通知
-
*/
-
private void showNotifyWithLights() {
-
final NotificationCompat.Builder builder =
new NotificationCompat.Builder(
this)
-
.setSmallIcon(R.mipmap.ic_launcher)
-
.setContentTitle(
"呼吸灯效果的通知")
-
.setContentText(
"一闪一闪~")
-
//ledARGB 表示灯光颜色、 ledOnMS 亮持续时间、ledOffMS 暗的时间
-
.setLights(
0xFF0000,
3000,
3000);
-
Notification notify = builder.build();
-
//只有在设置了标志符Flags为Notification.FLAG_SHOW_LIGHTS的时候,才支持呼吸灯提醒。
-
notify.flags = Notification.FLAG_SHOW_LIGHTS;
-
//设置lights参数的另一种方式
-
//notify.ledARGB = 0xFF0000;
-
//notify.ledOnMS = 500;
-
//notify.ledOffMS = 5000;
-
mManager.notify(
4, builder.build());
-
}
Notification效果介绍完之后我们可以介绍一下不同应用环境的通知的不同使用。
1.不想被手动清除的通知
例如播放器的通知,我们不想它的通知被销毁,这一类的我们需要添加
Notification.FLAG_NO_CLEAR 只有当全部清除才会清除 ,手动滑动清除不可能哒~
2.循环提醒的通知
例如闹铃的通知,他需要持续的提醒你,震动啊~ 响啊等等 知道你操作之后才会停止,这一类我们需要添加
Notification.FLAG_INSISTENT //让声音、振动无限循环,直到用户响应 (取消或者打开)
3.随时清除的通知
例如广告的通知,用户随时查看到随时可以删除,这一类我们需要添加
Notification.FLAG_AUTO_CANCEL //用户单击通知后自动消失
提到了广告通知,一般用户点击之后 都会跳转对应的APP应用的某个页面,下面我们继续延伸点击通知跳转的实现
Notificaiton 跳转和清除
Notification想通过单击之后跳转,必须要实现PendingIntent的使用
PendingIntent和Intent略有不同,它可以设置执行次数,主要用于远程服务通信、闹铃、通知、启动器、短信中,在一般情况下用的比较少。Notification想实现跳转这里就用到了setContentIntent(PendingIntent intent)来处理事件。
-
Intent intent =
new Intent(
this,XXXActivity.class);
-
PendingIntent pendingIntent = PendingIntent.getActivity(context,
0, intent,
0);
-
mBuilder.setContentIntent(pendingIntent)
PendingIntent还有一些属性如下:
PendingIntent的位标识符:
FLAG_ONE_SHOT 表示返回的PendingIntent仅能执行一次,执行完后自动取消
FLAG_NO_CREATE 表示如果描述的PendingIntent不存在,并不创建相应的PendingIntent,而是返回NULL
FLAG_CANCEL_CURRENT 表示相应的PendingIntent已经存在,则取消前者,然后创建新的PendingIntent,这个有利于数据保持为最新的,可以用于即时通信的通信场景
FLAG_UPDATE_CURRENT 表示更新的PendingIntent
那么除了点击清除我们在系统中,例如退出应用和停止了某种行为要手动清除通知 就要继续清出管理者NotificationManger来清除对应或者所有的通知
-
NotificationManager mNotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
-
mNotificationManager .cancel(
int);
//清除指定创建的通知
-
mNotificationManager .cancleAll();
//清除所有通知
播放器通知
进度条通知
大图通知
等等等等,下片文章我会和大家介绍一下关于自定义的通知栏通知信息。