Android通知栏使用

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 通过它的各个方法来填装我们所需要的各种信息如下代码


 
 
  1. NotificationCompat.Builder mBuilder = new NotificationCompat.Builder( this);
  2. //设置小图标
  3. .setSmallIcon(R.mipmap.icon)
  4. //设置通知标题
  5. .setContentTitle( "测试中…………")
  6. //设置通知内容
  7. .setContentText( "测试notification中的使用包括图标,内容,时间等")
  8. //设置通知时间,默认为系统发出通知的时间,通常不用设置
  9. .setWhen(System.currentTimeMillis());


然后我们通过构造器来创建出 Notification,并通过刚刚的管理者 NotificaitonManager发布通知

 
 
  1. Notification notify = mBuilder .build();
  2. mNotificationManager.notify( 1,notify );
这样一个简单的通知事项就建好了,但是这种通知几乎不会被使用者发觉,所以我们进一步延伸完善通知的使用,

给通知绘声绘色,让它能够通过各种方式来提醒你,也就是Notification的通知效果了;



Notificaiton 通知效果

Notification的通知效果主要包含几种方式:铃声,震动,提示灯

而且这些效果可以单独使用,也可以叠加使用


 
 
  1. /**
  2. * 展示有自定义铃声效果的通知
  3. */
  4. private void showNotifyWithRing() {
  5. NotificationCompat.Builder builder = new NotificationCompat.Builder( this)
  6. .setSmallIcon(R.mipmap.ic_launcher)
  7. .setContentTitle( "我是伴有铃声效果的通知")
  8. .setContentText( "美妙么?安静听~")
  9. //调用系统默认响铃,设置此属性后setSound()会无效
  10. //.setDefaults(Notification.DEFAULT_SOUND)
  11. //调用自己提供的铃声,位于 /res/values/raw 目录下
  12. .setSound(Uri.parse( "android.resource://com.littlejie.notification/" + R.raw.sound));

 
 
  1. //另一种设置铃声的方法
  2. //Notification notify = builder.build();
  3. //调用系统默认铃声
  4. //notify.defaults = Notification.DEFAULT_SOUND;
  5. //调用自己提供的铃声
  6. //notify.sound = Uri.parse("android.resource://com.littlejie.notification/"+R.raw.sound);
  7. //调用系统自带的铃声
  8. //notify.sound = Uri.withAppendedPath(MediaStore.Audio.Media.INTERNAL_CONTENT_URI,"2");
  9. //mManager.notify(2,notify);
  10. mManager.notify( 2, builder.build());
  11. }

 
 
  1. /**
  2. * 展示有震动效果的通知,需要在AndroidManifest.xml中申请震动权限
  3. * <uses-permission android:name="android.permission.VIBRATE" />
  4. * 补充:测试震动的时候,手机的模式一定要调成铃声+震动模式,否则你是感受不到震动的
  5. */
  6. private void showNotifyWithVibrate() {
  7. long[] vibrate = new long[]{ 0, 500, 1000, 1500};
  8. NotificationCompat.Builder builder = new NotificationCompat.Builder( this)
  9. .setSmallIcon(R.mipmap.ic_launcher)
  10. .setContentTitle( "我是伴有震动效果的通知")
  11. .setContentText( "颤抖吧,凡人~")
  12. //使用系统默认的震动参数,会与自定义的冲突
  13. //.setDefaults(Notification.DEFAULT_VIBRATE)
  14. //自定义震动效果
  15. .setVibrate(vibrate);
  16. //另一种设置震动的方法
  17. //Notification notify = builder.build();
  18. //调用系统默认震动
  19. //notify.defaults = Notification.DEFAULT_VIBRATE;
  20. //调用自己设置的震动
  21. //notify.vibrate = vibrate;
  22. //mManager.notify(3,notify);
  23. mManager.notify( 3, builder.build());
  24. }

 
 
  1. /**
  2. * 显示带有呼吸灯效果的通知
  3. */
  4. private void showNotifyWithLights() {
  5. final NotificationCompat.Builder builder = new NotificationCompat.Builder( this)
  6. .setSmallIcon(R.mipmap.ic_launcher)
  7. .setContentTitle( "呼吸灯效果的通知")
  8. .setContentText( "一闪一闪~")
  9. //ledARGB 表示灯光颜色、 ledOnMS 亮持续时间、ledOffMS 暗的时间
  10. .setLights( 0xFF0000, 3000, 3000);
  11. Notification notify = builder.build();
  12. //只有在设置了标志符Flags为Notification.FLAG_SHOW_LIGHTS的时候,才支持呼吸灯提醒。
  13. notify.flags = Notification.FLAG_SHOW_LIGHTS;
  14. //设置lights参数的另一种方式
  15. //notify.ledARGB = 0xFF0000;
  16. //notify.ledOnMS = 500;
  17. //notify.ledOffMS = 5000;
  18. mManager.notify( 4, builder.build());
  19. }


Notificaiton 使用定制设置

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)来处理事件。


 
 
  1. Intent intent = new Intent( this,XXXActivity.class);
  2. PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0);
  3. 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来清除对应或者所有的通知


 
 
  1. NotificationManager mNotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
  2. mNotificationManager .cancel( int); //清除指定创建的通知
  3. mNotificationManager .cancleAll(); //清除所有通知


讲了这么多,初步的通知使用相信大家应该会创建了,但是Notification的能力不仅仅是这些,例如:

播放器通知


进度条通知


大图通知


等等等等,下片文章我会和大家介绍一下关于自定义的通知栏通知信息。






评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值