Android NotificationManager 和Notification的使用总结

来源:互联网 发布:多个数据横向转纵向 编辑:程序博客网 时间:2024/05/22 10:44
NotificationManager 和Notification的使用总结(转)
文章分类:移动开发
如图:

这几天一直在修改twigee的源代码,其中一个要加入的功能是常驻Notification栏,以前写的时候只能出现 在“通知”这一组中,想把它放在“正在运行”组中却不知道怎么放,查了下官方文档,找到了方法,在notification的flags字段中加一下 “FLAG_ONGOING_EVENT”就可以了。同时我也把Notification的使用方法给总结了一下。详见下文:
首先,发送一个状态栏通知必须用到两个类:NotificationManager、Notification。 
NotificationManager:是状态栏通知的管理类,负责发通知、清楚通知等。 
NotificationManager是一个系统Service,必须通过getSystemService()方法来获取。 
NotificationManagernm=(NotificationManager)getSystemService(NOTIFICATION_SERVICE); 
Notification:是具体的状态栏通知对象,可以设置icon、文字、提示声音、振动等等参数。 
下面是设置一个通知需要的基本参数: 
Anicon(通知的图标) 
Atitleandexpandedmessage(通知的标题和内容) 
APendingIntent(点击通知执行页面跳转) 

(1)、使用系统定义的Notification
以下是使用示例代码:
//创建一个NotificationManager的引用
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager)getSystemService(ns);
// 定义Notification的各种属性
int icon = R.drawable.icon; //通知图标
CharSequence tickerText = "Hello";//状态栏显示的通知文本提示
long when = System.currentTimeMillis(); //通知产生的时间,会在通知信息里显示
//用上面的属性初始化 Nofification
Notification notification = new Notification(icon,tickerText,when);
------java------

//初始化NotificationManager:   

//NotificationManager nm =(NotificationManager)getSystemService(NOTIFICATION_SERVICE);  
//Notification代表着一个通知.
//Notification的属性:
//audioStreamType 当声音响起时,所用的音频流的类型
//contentIntent 当通知条目被点击,就执行这个被设置的Intent.
//contentView 当通知被显示在状态条上的时候,同时这个被设置的视图被显示.
//defaults 指定哪个值要被设置成默认的.
//deleteIntent 当用户点击"Clear All Notifications"按钮区删除所有的通知的时候,这个被设置的Intent被执行.
//icon 状态条所用的图片.
//iconLevel 假如状态条的图片有几个级别,就设置这里.
//ledARGB LED灯的颜色.
//ledOffMS LED关闭时的闪光时间(以毫秒计算)
//ledOnMS LED开始时的闪光时间(以毫秒计算)
//number 这个通知代表事件的号码
//sound 通知的声音
//tickerText 通知被显示在状态条时,所显示的信息
//vibrate 振动模式.
//when 通知的时间戳.


/*
* 添加声音
* notification.defaults |=Notification.DEFAULT_SOUND;
* 或者使用以下几种方式
* notification.sound = Uri.parse("file:///sdcard/notification/ringer.mp3");
* notification.sound = Uri.withAppendedPath(Audio.Media.INTERNAL_CONTENT_URI, "6");
* 如果想要让声音持续重复直到用户对通知做出反应,则可以在notification的flags字段增加"FLAG_INSISTENT"
* 如果notification的defaults字段包括了"DEFAULT_SOUND"属性,则这个属性将覆盖sound字段中定义的声音
*/
/*
* 添加振动
* notification.defaults |= Notification.DEFAULT_VIBRATE;
* 或者可以定义自己的振动模式:
* long[] vibrate = {0,100,200,300}; //0毫秒后开始振动,振动100毫秒后停止,再过200毫秒后再次振动300毫秒
* notification.vibrate = vibrate;
* long数组可以定义成想要的任何长度
* 如果notification的defaults字段包括了"DEFAULT_VIBRATE",则这个属性将覆盖vibrate字段中定义的振动
*/
/*
* 添加LED灯提醒
* notification.defaults |= Notification.DEFAULT_LIGHTS;
* 或者可以自己的LED提醒模式:
* notification.ledARGB = 0xff00ff00;
* notification.ledOnMS = 300; //亮的时间
* notification.ledOffMS = 1000; //灭的时间
* notification.flags |= Notification.FLAG_SHOW_LIGHTS;
*/
/*
* 更多的特征属性
* notification.flags |= FLAG_AUTO_CANCEL; //在通知栏上点击此通知后自动清除此通知
* notification.flags |= FLAG_INSISTENT; //重复发出声音,直到用户响应此通知
* notification.flags |= FLAG_ONGOING_EVENT; //将此通知放到通知栏的"Ongoing"即"正在运行"组中
* notification.flags |= FLAG_NO_CLEAR; //表明在点击了通知栏中的"清除通知"后,此通知不清除,
* //经常与FLAG_ONGOING_EVENT一起使用
* notification.number = 1; //number字段表示此通知代表的当前事件数量,它将覆盖在状态栏图标的顶部
* //如果要使用此字段,必须从1开始
* notification.iconLevel = ; //
*/
//设置通知的事件消息
Context context = getApplicationContext(); //上下文
CharSequence contentTitle = "My Notification";//通知栏标题
CharSequence contentText = "Hello World!";//通知栏内容
Intent notificationIntent = new Intent(this,Main.class);//点击该通知后要跳转的Activity
PendingIntent contentIntent = PendingIntent.getActivity(this,0,notificationIntent,0);
notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
//把Notification传递给 NotificationManager
mNotificationManager.notify(0,notification);
如果想要更新一个通知,只需要在设置好notification之后,再次调用 setLatestEventInfo(),然后重新发送一次通知即可,即再次调用notify()。
(2)、使用自定义的 Notification
要创建一个自定义的Notification,可以使用RemoteViews。要定义自己的扩展消息,首先 要初始化一个RemoteViews对象,然后将它传递给Notification的contentView字段,再把PendingIntent传递给 contentIntent字段。以下示例代码是完整步骤:
Java代码 
  1. //1、创建一个自 定义的消息布局 view.xml
  2. <?xml version="1.0" encoding="utf-8"?>
  3. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="fill_parent" android:layout_height="fill_parent">
  5. <ImageView android:id="@+id/image" android:layout_width="wrap_content"
  6. android:layout_height="fill_parent" android:layout_marginRight="10dp" />
  7. <TextView android:id="@+id/text" android:layout_width="wrap_content"
  8. android:layout_height="fill_parent" android:textColor="#000" />
  9. </LinearLayout>

Java代码 

  1. //2、 在程序代码中使用RemoteViews的方法来定义image和text。然后把RemoteViews对象传到contentView字段
  2. RemoteViews contentView = new RemoteViews(getPackageName(),R.layout.view);
  3. contentView.setImageViewResource(R.id.image,R.drawable.icon);
  4. contentView.setTextViewText(R.id.text,”Hello,this message is in a custom expanded view”);
  5. notification.contentView = contentView;
  6. //3、 为Notification的contentIntent字段定义一个Intent(注意,使用自定义View不需要 setLatestEventInfo()方法)
  7. Intent notificationIntent = new Intent(this,Main.class);
  8. PendingIntent contentIntent = PendingIntent.getActivity(this,0,notificationIntent,0);
  9. notification.contentIntent = contentIntent;
  10. //4、发送通知
  11. mNotificationManager.notify(2,notification);
  12. // 以下是全部示例代码
  13. //创建一个 NotificationManager的引用
  14. String ns = Context.NOTIFICATION_SERVICE;
  15. NotificationManager mNotificationManager = (NotificationManager)getSystemService(ns);
  16. // 定义Notification的各种属性
  17. int icon = R.drawable.icon; //通知图标
  18. CharSequence tickerText = "Hello";//状态栏显示的通知文本提示
  19. long when = System.currentTimeMillis(); //通知产生的时间,会在通知信息里显示
  20. //用上面的属性初始化 Nofification
  21. Notification notification = new Notification(icon,tickerText,when);
  22. RemoteViews contentView = new RemoteViews(getPackageName(),R.layout.view);
  23. contentView.setImageViewResource(R.id.image, R.drawable.iconempty);
  24. contentView.setTextViewText(R.id.text,"Hello,this is JC");
  25. notification.contentView = contentView;
  26. Intent notificationIntent = new Intent(this,Main.class);
  27. PendingIntent contentIntent = PendingIntent.getActivity(this,0,notificationIntent,0);
  28. notification.contentIntent = contentIntent;
  29. //把Notification传递给NotificationManager
  30. mNotificationManager.notify(0,notification);
  31.  




最后实现android 添加任务栏常住图标

Java代码  收藏代码
  1. private void initNotification()  
  2. {  
  3.     int notificationID = 10;  
  4.     NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);  
  5.   
  6.     // Create the notification  
  7.     Notification notification = new Notification(R.drawable.clock, "TestActivity已经起动",  
  8.             System.currentTimeMillis());  
  9.     notification.flags |= Notification.FLAG_ONGOING_EVENT; // 将此通知放到通知栏的"Ongoing"即"正在运行"组中  
  10.     notification.flags |= Notification.FLAG_NO_CLEAR; // 表明在点击了通知栏中的"清除通知"后,此通知不清除,经常与FLAG_ONGOING_EVENT一起使用  
  11.     notification.flags |= Notification.FLAG_SHOW_LIGHTS; // set LED on  
  12.     // notification.defaults = Notification.DEFAULT_LIGHTS; //默认Notification lights;  
  13.     notification.ledARGB = R.color.blue; // LED 颜色;  
  14.     notification.ledOnMS = 5000// LED 亮时间  
  15.   
  16.     // Create the notification expanded message  
  17.     // When the user clicks on it, it opens your activity  
  18.     Intent intent = new Intent(this, TestActivity.class);  
  19.     PendingIntent pendingIntent = PendingIntent.getActivity(this0,  
  20.             intent, 0);  
  21.     notification  
  22.             .setLatestEventInfo(this"TestActivity""17:50执行下个任务", pendingIntent); 
  23.     // Show notification  
  24.     notificationManager.notify(notificationID, notification);  
  25. }  

Java代码 
  1. public void onCreate(Bundle savedInstanceState)  
  2. {  
  3.     super.onCreate(savedInstanceState);  
  4.     setContentView(R.layout.main);  
  5.   
  6.     initNotification();  
  7.   
  8.     iniTimePick();  
  9.   
  10. }  
原创粉丝点击