筆記如下

Video_2018-03-14_113405.gif
//構(gòu)建一個notification對象
Notification noti = new Notification.Builder(this)
.setContentTitle("我是一條消息 ")
.setContentText("嘿嘿")
.setSmallIcon(R.mipmap.ic_launcher)
.setLargeIcon(BitmapFactory.decodeResource(getResources(),R.mipmap.ic_launcher))
.build();
manager.notify(1,noti);