android 发送状态栏通知

来源:互联网 发布:新淘宝网怎样充话费 编辑:程序博客网 时间:2024/05/16 08:57

发送状态栏通知

Notification notification = new Notification(icon, summary, System.currentTimeMillis());notification.defaults = Notification.DEFAULT_SOUND;  // 通知的声音notification.flags = Notification.FLAG_AUTO_CANCEL; // 点击后自动取消通知Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:10010"));PendingIntent pendingIntent = PendingIntent.getActivity(this, 20, intent, 0);notification.setLatestEventInfo(this, title, content, pendingIntent);NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);manager.notify(100, notification);


 

原创粉丝点击