当前位置: 移动技术网 > 移动技术>移动开发>Android > Android开发 -- 状态栏通知Notification、NotificationManager详解

Android开发 -- 状态栏通知Notification、NotificationManager详解

2019年07月24日  | 移动技术网移动技术  | 我要评论

本想自己写一个的,但是看到这篇之后,我想还是转过来吧,实在是非常的详细:

在android系统中,发一个状态栏通知还是很方便的。下面我们就来看一下,怎么发送状态栏通知,状态栏通知又有哪些参数可以设置?

首先,发送一个状态栏通知必须用到两个类:  notificationmanager 、 notification。

notificationmanager :  是状态栏通知的管理类,负责发通知、清楚通知等。

notificationmanager 是一个系统service,必须通过 getsystemservice()方法来获取。

复制代码 代码如下:
notificationmanager nm = (notificationmanager) getsystemservice(notification_service);
 

notification:是具体的状态栏通知对象,可以设置icon、文字、提示声音、振动等等参数。

下面是设置一个通知需要的基本参数:

    an icon  (通知的图标)
    a title and expanded message  (通知的标题和内容)
    a pendingintent   (点击通知执行页面跳转)

可选的设置:

    a ticker-text message (状态栏顶部提示消息)
    an alert sound    (提示音)
    a vibrate setting  (振动)
    a flashing led setting  (灯光)
    等等

一、创建notification

通过notificationmanager  的 notify(int, notification) 方法来启动notification。

第一个参数唯一的标识该notification,第二个参数就是notification对象。

二、更新notification

调用notification的 setlatesteventinfo方法来更新内容,然后再调用notificationmanager的notify()方法即可。(具体可以看下面的实例)

三、删除notification

通过notificationmanager  的cancel(int)方法,来清除某个通知。其中参数就是notification的唯一标识id。

当然也可以通过  cancelall() 来清除状态栏所有的通知。

四、notification设置(振动、铃声等)

1. 基本设置:

//新建状态栏通知 

复制代码 代码如下:
basenf = new notification();

  
//设置通知在状态栏显示的图标 
复制代码 代码如下:
basenf.icon = r.drawable.icon;

 
//通知时在状态栏显示的内容 
复制代码 代码如下:
basenf.tickertext = "you clicked basenf!";
 
 
//通知的默认参数 default_sound, default_vibrate, default_lights.  
//如果要全部采用默认值, 用 default_all. 
//此处采用默认声音 
复制代码 代码如下:
basenf.defaults = notification.default_sound;

 
//第二个参数 :下拉状态栏时显示的消息标题 expanded message title 
//第三个参数:下拉状态栏时显示的消息内容 expanded message text 
//第四个参数:点击该通知时执行页面跳转 
复制代码 代码如下:
basenf.setlatesteventinfo(lesson_10.this, "title01", "content01", pd);

 
//发出状态栏通知 
//the first parameter is the unique id for the notification  
// and the second is the notification object. 
复制代码 代码如下:
nm.notify(notification_id_base, basenf);

配一张图作说明:

http://www.lhsxpumps.com/_images4/10qianwan/20190724/b_0_201907241414235322.jpg

2. 添加声音

如果要采用默认声音,只要使用default就可以了。

复制代码 代码如下:
basenf.defaults = notification.default_sound;

如果要使用自定义声音,那么就要用到sound了。如下:

复制代码 代码如下:
notification.sound = uri.parse("]

上面这种方法,使用的是自己的铃声,如果想用系统自带的铃声,可以这样:

[code]notification.sound = uri.withappendedpath(audio.media.internal_content_uri, "6");

需要注意一点,如果default、sound同时出现,那么sound无效,会使用默认铃声。

默认情况下,通知的声音播放一遍就会结束。 如果你想让声音循环播放,需要为flags参数加上flag_insistent。 这样声音会到用户响应才结束,比如下拉状态栏。

复制代码 代码如下:
notification.flags |= notification.flag_insistent;

3. 添加振动

如果是使用默认的振动方式,那么同样也是使用default。

复制代码 代码如下:
notification.defaults |= notification.default_vibrate;

当然也可以自己定义振动形式,这边需要用到long型数组。

复制代码 代码如下:
long[] vibrate = {0,100,200,300};
notification.vibrate = vibrate;

这边的long型数组中,第一个参数是开始振动前等待的时间,第二个参数是第一次振动的时间,第三个参数是第二次振动的时间,以此类推,随便定义多长的数组。但是采用这种方法,没有办法做到重复振动。

同样,如果default、vibrate同时出现时,会采用默认形式。

另外还需要注意一点:使用振动器时需要权限,如下:

复制代码 代码如下:
<uses-permission android:name="android.permission.vibrate"></uses-permission>

4. 闪光

使用默认的灯光,如下:

复制代码 代码如下:
notification.defaults |= notification.default_lights;

自定义:

复制代码 代码如下:
notification.ledargb = 0xff00ff00; 
notification.ledonms = 300; 
notification.ledoffms = 1000; 
notification.flags |= notification.flag_show_lights;

其中ledargb 表示灯光颜色、 ledonms 亮持续时间、ledoffms 暗的时间。

注意:这边的颜色跟设备有关,不是所有的颜色都可以,要看具体设备。

5. 其他有用的设置:

flags:

//让声音、振动无限循环,直到用户响应

复制代码 代码如下:
notification.flag_insistent;

//通知被点击后,自动消失

复制代码 代码如下:
notification.flag_auto_cancel;

//点击'clear'时,不清楚该通知(qq的通知无法清除,就是用的这个)

复制代码 代码如下:
notification.flag_no_clear;

下面附上我做的例子,供大家参考。 里面包括创建通知、更新通知、清除通知、设置自定义铃声、自定义振动、自定义通知视图等。

http://www.lhsxpumps.com/_images4/10qianwan/20190724/b_0_201907241414235293.jpg http://www.lhsxpumps.com/_images4/10qianwan/20190724/b_0_201907241414249277.jpg

附上代码:

主类:

package com.yfz; 
import android.app.activity; 
import android.app.notification; 
import android.app.notificationmanager; 
import android.app.pendingintent; 
import android.content.intent; 
import android.net.uri; 
import android.os.bundle; 
import android.provider.mediastore.audio; 
import android.util.log; 
import android.view.view; 
import android.view.view.onclicklistener; 
import android.widget.button; 
import android.widget.remoteviews; 
import android.widget.seekbar; 
import android.widget.textview; 
/** 
 * notification 
 * @author administrator 
 * 
 */ 
public class lesson_10 extends activity { 
  
 //basenotification 
 private button bt01; 
  
 //updatebasenotification 
 private button bt02; 
  
 //clearbasenotification 
 private button bt03; 
  
 //medianotification 
 private button bt04; 
  
 //clearmedianotification 
 private button bt05; 
  
 //clearall 
 private button bt06; 
  
 //customnotification 
 private button bt07; 
  
 //通知管理器 
 private notificationmanager nm; 
  
 //通知显示内容 
 private pendingintent pd; 
  
 @override 
  public void oncreate(bundle savedinstancestate) { 
   super.oncreate(savedinstancestate); 
   /*加载页面*/ 
   setcontentview(r.layout.lesson10); 
    
   init(); 
 } 
  
 private void init() { 
  bt01 = (button)findviewbyid(r.id.le10bt01); 
  bt02 = (button)findviewbyid(r.id.le10bt02); 
  bt03 = (button)findviewbyid(r.id.le10bt03); 
  bt04 = (button)findviewbyid(r.id.le10bt04); 
  bt05 = (button)findviewbyid(r.id.le10bt05); 
  bt06 = (button)findviewbyid(r.id.le10bt06); 
  bt07 = (button)findviewbyid(r.id.le10bt07); 
   
  bt01.setonclicklistener(onclick); 
  bt02.setonclicklistener(onclick); 
  bt03.setonclicklistener(onclick); 
  bt04.setonclicklistener(onclick); 
  bt05.setonclicklistener(onclick); 
  bt06.setonclicklistener(onclick);  
  bt07.setonclicklistener(onclick); 
   
  nm = (notificationmanager) getsystemservice(notification_service); 
   
  intent intent = new intent(this,lesson_10.class); 
   
  pd = pendingintent.getactivity(lesson_10.this, 0, intent, 0); 
 } 
  
 onclicklistener onclick = new onclicklistener() { 
   
  //base notification id 
  private int notification_id_base = 110; 
   
  private notification basenf; 
   
  //notification id 
  private int notification_id_media = 119; 
   
  private notification medianf; 
   
  @override 
  public void onclick(view v) { 
   switch(v.getid()) { 
    case r.id.le10bt01: 
     //新建状态栏通知 
     basenf = new notification(); 
      
     //设置通知在状态栏显示的图标 
     basenf.icon = r.drawable.icon; 
      
     //通知时在状态栏显示的内容 
     basenf.tickertext = "you clicked basenf!"; 
      
     //通知的默认参数 default_sound, default_vibrate, default_lights. 
     //如果要全部采用默认值, 用 default_all. 
     //此处采用默认声音 
     basenf.defaults |= notification.default_sound; 
     basenf.defaults |= notification.default_vibrate; 
     basenf.defaults |= notification.default_lights; 
      
     //让声音、振动无限循环,直到用户响应 
     basenf.flags |= notification.flag_insistent; 
      
     //通知被点击后,自动消失 
     basenf.flags |= notification.flag_auto_cancel; 
      
     //点击'clear'时,不清楚该通知(qq的通知无法清除,就是用的这个) 
     basenf.flags |= notification.flag_no_clear; 
      
      
     //第二个参数 :下拉状态栏时显示的消息标题 expanded message title 
     //第三个参数:下拉状态栏时显示的消息内容 expanded message text 
     //第四个参数:点击该通知时执行页面跳转 
     basenf.setlatesteventinfo(lesson_10.this, "title01", "content01", pd); 
      
     //发出状态栏通知 
     //the first parameter is the unique id for the notification 
     // and the second is the notification object. 
     nm.notify(notification_id_base, basenf); 
      
     break; 
      
    case r.id.le10bt02: 
     //更新通知 
     //比如状态栏提示有一条新短信,还没来得及查看,又来一条新短信的提示。 
     //此时采用更新原来通知的方式比较。 
     //(再重新发一个通知也可以,但是这样会造成通知的混乱,而且显示多个通知给用户,对用户也不友好) 
     basenf.setlatesteventinfo(lesson_10.this, "title02", "content02", pd); 
     nm.notify(notification_id_base, basenf); 
     break; 
      
    case r.id.le10bt03: 
      
     //清除 basenf 
     nm.cancel(notification_id_base); 
     break; 
      
    case r.id.le10bt04: 
     medianf = new notification(); 
     medianf.icon = r.drawable.icon; 
     medianf.tickertext = "you clicked medianf!"; 
      
     //自定义声音 
     medianf.sound = uri.withappendedpath(audio.media.internal_content_uri, "6"); 
      
     //通知时发出的振动 
     //第一个参数: 振动前等待的时间 
     //第二个参数: 第一次振动的时长、以此类推 
     long[] vir = {0,100,200,300}; 
     medianf.vibrate = vir; 
      
     medianf.setlatesteventinfo(lesson_10.this, "title03", "content03", pd); 
      
     nm.notify(notification_id_media, medianf); 
     break; 
      
    case r.id.le10bt05: 
     //清除 medianf 
     nm.cancel(notification_id_media); 
     break; 
      
    case r.id.le10bt06: 
     nm.cancelall(); 
     break; 
      
    case r.id.le10bt07: 
     //自定义下拉视图,比如下载软件时,显示的进度条。 
     notification notification = new notification(); 
      
     notification.icon = r.drawable.icon; 
     notification.tickertext = "custom!"; 
      
     remoteviews contentview = new remoteviews(getpackagename(), r.layout.custom); 
     contentview.setimageviewresource(r.id.image, r.drawable.icon); 
     contentview.settextviewtext(r.id.text, "hello, this message is in a custom expanded view"); 
     notification.contentview = contentview; 
      
     //使用自定义下拉视图时,不需要再调用setlatesteventinfo()方法 
     //但是必须定义 contentintent 
     notification.contentintent = pd; 
      
     nm.notify(3, notification); 
     break; 
   } 
  } 
 }; 
  
  
} 

主页面:

<?xml version="1.0" encoding="utf-8"?> 
<linearlayout 
 xmlns:android="http://schemas.android.com/apk/res/android" 
 android:layout_width="fill_parent" 
 android:layout_height="fill_parent" 
 android:orientation="vertical"> 
 <button 
  android:id="@+id/le10bt01" 
  android:layout_width="fill_parent" 
  android:layout_height="wrap_content" 
  android:text="basenotification" 
 /> 
 <button 
  android:id="@+id/le10bt02" 
  android:layout_width="fill_parent" 
  android:layout_height="wrap_content" 
  android:text="updatebasenotification" 
 /> 
 <button 
  android:id="@+id/le10bt03" 
  android:layout_width="fill_parent" 
  android:layout_height="wrap_content" 
  android:text="clearbasenotification" 
 /> 
 <button 
  android:id="@+id/le10bt04" 
  android:layout_width="fill_parent" 
  android:layout_height="wrap_content" 
  android:text="medianotification" 
 /> 
 <button 
  android:id="@+id/le10bt05" 
  android:layout_width="fill_parent" 
  android:layout_height="wrap_content" 
  android:text="clearmedianotification" 
 /> 
 <button 
  android:id="@+id/le10bt06" 
  android:layout_width="fill_parent" 
  android:layout_height="wrap_content" 
  android:text="clearall" 
 /> 
 <button 
  android:id="@+id/le10bt07" 
  android:layout_width="fill_parent" 
  android:layout_height="wrap_content" 
  android:text="customnotification" 
 /> 
</linearlayout> 

自定义视图页面:

<?xml version="1.0" encoding="utf-8"?> 
<linearlayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="horizontal" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:padding="3dp" 
    > 
 <imageview android:id="@+id/image" 
    android:layout_width="wrap_content" 
    android:layout_height="fill_parent" 
    android:layout_marginright="10dp" 
    /> 
 <textview android:id="@+id/text" 
    android:layout_width="wrap_content" 
    android:layout_height="fill_parent" 
    android:textcolor="#000" 
    /> 
</linearlayout>

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网