1,当程序里面有很多的部件需要点击执行动作的时候可以使用implements OnClickListener.。这是按钮点击事件。
2,Notification notification = new NotificationCompat.Builder( this )。这只是创建了一个空的Notification对象,而该对象的装饰用一下东西来修饰。
.setContentTitle( "This is content title" ) 指定通知的标题内容
.setContentText("This is content text" ) 指定通知的正文内容
.setWhen(System.currentTimeMillis() ) 该通知被创建的时间
.setSmallIcon( R.mipmap.ic_launcher ) 设置通知的小图标(只有纯alpha图层的图片进行设置)显示在系统通知栏上
.setLargeIcon( BitmapFactory.decodeResource(getResources(),R.mipmap.ic_launcher)) 设置通知的大图标,拉下系统通知栏时就可以显示。
.build();
manager.notify( 1,notification ); notify(第一个参数是id,第二个参数是Notification对象)方法就可以让通知显示出来