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

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

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

NotificationManager 是一个系统Service,必须通过 getSystemService()方法来获取。

 NotificationManager nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);  

 

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

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

  • An icon  (通知的图标)
  • A title and expanded message  (通知的标题和内容)
  • PendingIntent   (点击通知执行页面跳转)

一、创建Notification

通过NotificationManager  的 notify(int, Notification) 方法来启动Notification。

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

二、更新Notification

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

 

三、删除Notification

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

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

 

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

 

1. 基本设置: 

 //新建状态栏通知   

  1. baseNF = new Notification();   
  2.     
  3. //设置通知在状态栏显示的图标   
  4. baseNF.icon = R.drawable.icon;   
  5.   
  6. //通知时在状态栏显示的内容   
  7. baseNF.tickerText = "You clicked BaseNF!";   
  8.   
  9. //通知的默认参数 DEFAULT_SOUND, DEFAULT_VIBRATE, DEFAULT_LIGHTS.    
  10. //如果要全部采用默认值, 用 DEFAULT_ALL.   
  11. //此处采用默认声音   
  12. baseNF.defaults = Notification.DEFAULT_SOUND;   
  13.   
  14. //第二个参数 :下拉状态栏时显示的消息标题 expanded message title   
  15. //第三个参数:下拉状态栏时显示的消息内容 expanded message text   
  16. //第四个参数:点击该通知时执行页面跳转   
  17. baseNF.setLatestEventInfo(Lesson_10.this"Title01""Content01", pd);   
  18.   
  19. //发出状态栏通知   
  20. //The first parameter is the unique ID for the Notification    
  21. // and the second is the Notification object.   
  22. nm.notify(Notification_ID_BASE, baseNF);        

配一张图作说明:

 

2. 添加声音

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

baseNF.defaults = Notification.DEFAULT_SOUND;   

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

notification.sound = Uri.parse("file:///sdcard/notification/ringer.mp3");   

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

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;    //通知被点击后,自动消失

Notification.FLAG_NO_CLEAR;  //点击'Clear'时,不清楚该通知(QQ的通知无法清除,就是用的这个

 

 //自定义下拉视图,比如下载软件时,显示的进度条。   

  •                     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);   

 

在通知栏中加载进度条,比如下载进度:

 

demo

Notification n;
NotificationManager nm;

private void sendNotify() {

nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
n = new Notification();

n.icon = R.drawable.numbers;
n.tickerText = "aa";
n.flags = Notification.FLAG_AUTO_CANCEL;
n.defaults = Notification.DEFAULT_SOUND;

RemoteViews remoteViews = new RemoteViews(getPackageName(), R.layout.remote);
n.contentView = remoteViews;
n.contentView.setProgressBar(R.id.progress, 100, 0, false);
n.contentIntent = PendingIntent.getActivity(this, 0, new Intent(this, SecondActivity.class), 0);

nm.notify(2, n);

new MyThread().start();
}


Handler handler = new Handler() {
@Override
public void handleMessage(Message msg) {
super.handleMessage(msg);
if (msg.arg1 <= 100) {
n.contentView.setProgressBar(R.id.progress, 100, msg.arg1, false);
nm.notify(2, n);
} else {
Toast.makeText(IndexActivity.this, "下载完毕", Toast.LENGTH_LONG).show();
}
}
};

class MyThread extends Thread {
@Override
public void run() {
super.run();
int i = 0;

while (i <= 100) {
Message message = new Message();
message.arg1 = i;
handler.sendMessage(message);
i += 10;
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}

Message message = new Message();
message.arg1 = 101;
handler.sendMessage(message);
}
}

 

 

 

posted on 2012-11-12 11:34  Snow〃冰激凌  阅读(536)  评论(0编辑  收藏  举报