android通知栏使用情况,Android通知栏(Notification)介绍及使用

在使用手机时,咱们经常会碰到各类通知,例如微信,头条,UC等,每天不厌其烦的给你各类推送,固然了咱们今天不讲推送,咱们讲讲通知栏的构建和使用,以及自定义通知栏的布局和使用方法java

构建一个通知栏通常分为这几个步骤:git

1.建立通知栏管理工具

2.构建通知栏构造器

3.给构造器设置参数

4.发送请求github

具体代码以下:web

/**

* 建立通知栏管理工具

*/

NotificationManager notificationManager = (NotificationManager) getSystemService

(NOTIFICATION_SERVICE);

/**

* 实例化通知栏构造器

*/

NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this);

/**

* 设置Builder

*/

//设置标题

mBuilder.setContentTitle("我是标题")

//设置内容

.setContentText("我是内容")

//设置大图标

.setLargeIcon(BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher))

//设置小图标

.setSmallIcon(R.mipmap.ic_launcher_round)

//设置通知时间

你可能感兴趣的:(android通知栏使用情况)