此文主要讲解 setLatestEventInfo的作用,他是Notification 的一个方法。下面以实际代码讲解用法。
Notification notification = new Notificatio(drawable,tickerText,System.currentTimeMillis()); //此处定义了一个Notification ,其中第一个参数代表图标
第二个参数代表提示的内容,第三个参数是指要显示的时间,一般是当即显示,故填入系统当前时间。
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, new Intent(this, ActivityMain.class), 0);//该语句的作用是定义了一个不是当即显示的activity,只有当用户拉下notify显示列表,并且单击对应的项的时候,才会触发系统跳转到该activity.
notification.setLatestEventInfo(this, title, content, contentIntent);//在此处设置在nority列表里的该norifycation得显示情况。
mNotificationManager.notify(NOTIFICATIONS_ID, notification);