主要标记有:
FLAG_UPDATE_CURRENT :如果已经存在PendingIntent,还产生该PendingIntent,还带有新的extra
FLAG_ONE_SHOT :这个PendingIntent只能被用一次。
FLAG_CANCEL_CURRENT:如果存在的PendingIntent还未消失,还取消将将要产生的该PendingIntent
主要代码:
String tickerText = shortText.getText().toString();
String title = titleText.getText().toString();
String content = contentText.getText().toString();
//1、得到NotificationManager
NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
//2、实例化一个通知,指定了图标、概要、时间
Notification notification = new Notification(Android.R.drawable.stat_notify_chat, tickerText, System.currentTimeMillis());
//3、指定通知的标题、内容和intent
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:104040444"));
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, 0);
notification.setLatestEventInfo(this, title, content, pendingIntent);
//指定标志和声音
notification.flags = Notification.FLAG_AUTO_CANCEL;
notification.defaults = Notification.DEFAULT_SOUND;
//可以指定为震动,也可以用 .sound来自己指定声音
//notification.defaults = Notification.DEFAULT_VIBRATE;
//可以指定为闪光灯
//notification.defaults = Notification.DEFAULT_LIGHTS;
//4、发送通知给通知管理者
manager.notify(1, notification);
本篇文章来源于 Linux公社网站(www.linuxidc.com) 原文链接:http://www.linuxidc.com/Linux/2011-04/35100p2.htm