通知用于在状态栏显示消息

如果需要查看消息,可以拖动状态栏到屏幕下方即可查看消息。

发送消息的代码如下:

//获取通知管理器

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

int icon = android.R.drawable.stat_notify_chat;

long when = System.currentTimeMillis();

//新建一个通知,指定其图标和标题

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

notification.defaults =Notification.DEFAULT_SOUND;//发出默认声音

Intent openintent = new Intent(this,OtherActivity.class);

PendingIntentcontentIntent =PendingIntent.getActivity(this, 0,openintent, 0);//当点击消息时就会向系统发送openintent意图

notification.setLatestEventInfo(this, “标题”, “我是内容",contentIntent);

mNotificationManager.notify (0, notification);// 第一个参数为自定义的通知唯一标识

更多相关文章

  1. Android 消息处理机制
  2. Android O(8.0)通知栏适配
  3. Android异步消息机制
  4. (五)Android线程及其消息机制
  5. Android 异步消息处理机制 让你深入理解 Looper、Handler、Messa

随机推荐

  1. git rename
  2. Eclipse调试工具之 adb
  3. Android(安卓)ExpandableListView使用小
  4. Android(安卓)查询联系人姓名和号码
  5. How to Run Android(安卓)Applications o
  6. Android(安卓)TextView获取某一行文字
  7. android 入门 006(sqlite增删改查)
  8. Android(安卓)SAX解析XML文件
  9. Android的Textview里面夹杂图片
  10. Android常用控件之RecyclerView