码迷,mamicode.com
首页 > 移动开发 > 详细

Android 中的通知

时间:2014-12-16 17:03:13      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   io   color   sp   on   div   log   

   一般手机上边都有一个状态条,显示电池电量、信号强度、未接来电、短信...Android 的屏幕上方也具有状态条。这里所说的通知,就是在这个状态条上显示通知。

发送通知的步骤如下:
  1).获取通知管理器

NotificationManager mNotificationManager = (NotificationManager)     
getSystemService(Context.NOTIFICATION_SERVICE); 

  2).新建一个通知,指定其图标和标题  

int icon = android.R.drawable.stat_notify_chat;
long when = System.currentTimeMillis();

//第一个参数为图标,第二个参数为标题,第三个为通知时间
Notification notification = new Notification(icon, null, when);

Intent openintent = new Intent(this, OtherActivity.class);
//当点击消息时就会向系统发送 openintent 意图
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, openintent, 0);
notification.setLatestEventInfo(this, “标题”, “内容", contentIntent);
mNotificationManager.notify(0, notification); 

 

Android 中的通知

标签:android   style   blog   io   color   sp   on   div   log   

原文地址:http://www.cnblogs.com/rfheh/p/4167329.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!