【Android札记】Notification的基本使用方法

【Android笔记】Notification的基本使用方法基本的步骤:?1)得到NotificationManager: ???? String ns Cont

【Android笔记】Notification的基本使用方法

基本的步骤:

?

1)得到NotificationManager:

???? String ns = Context.NOTIFICATION_SERVICE;

???? NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns);

?

2)创建一个新的Notification对象:

???? Notification notification = new Notification(R.drawable.notify,
??????????????????????? "Click on me!", System.currentTimeMillis());

???? p.s如果你不想要图标,设置为-1即可,但是设置为-1后状态栏依旧会留着图标的位置

?

3)填充Notification的各个属性:

                Context context = getApplicationContext();                CharSequence contentTitle = "My notification";                CharSequence contentText = "Hello World!";                                Intent notificationIntent = new Intent(Intent.ACTION_MAIN);                notificationIntent.setClass(DisplayGridActivity.this,                        NotificationActivity.class);                                PendingIntent contentIntent = PendingIntent.getActivity(DisplayGridActivity.this,                        0,                        notificationIntent,                        0);                notification.setLatestEventInfo(context,                        contentTitle,                        contentText,                        contentIntent);                notificationManager.notify(1, notification);
?

?

?

其他Notification属性

?

* 添加声音

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 = ; //

?

P.S:

PendingIntent和Intent的区别:An Intent is something that is used right now; a PendingIntent is something that may create an Intent in the future. You will use a PendingIntent with Notifications, AlarmManager, etc.

?

1 楼 hanhaotian87 2011-05-14   分析的很细啊,非常感谢!