简述
Android开发中,大家或多或少会遇到这样的情况,当应用程序在后台时,需要向用户发出一些信息提示用户,比如:未读的消息数,下载或更新完成后通知用户。 而我们开发者就是通过手机最上方的状态栏来传递通知信息,就引出了本次要讲的----Notification.
老规矩,先上图:
应用录屏.gif开始代码
点击事件什么的就直接跳过,直接来看设置到状态栏的代码 showNotification() ,讲讲里面的一些设置。
Notification notification;
NotificationManager manager;
private final static int NOTIFY_ID = 100;
private void showNotification() {
manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
Intent hangIntent = new Intent(this, MainActivity.class);
PendingIntent hangPendingIntent = PendingIntent.getActivity(this, 1001, hangIntent, PendingIntent.FLAG_UPDATE_CURRENT);
String CHANNEL_ID = "your_custom_id";//应用频道Id唯一值, 长度若太长可能会被截断,
String CHANNEL_NAME = "your_custom_name";//最长40个字符,太长会被截断
notification = new NotificationCompat.Builder(this, CHANNEL_ID)
.setContentTitle("这是一个猫头")
.setContentText("点我返回应用")
.setSmallIcon(R.mipmap.ic_launcher)
.setContentIntent(hangPendingIntent)
.setLargeIcon(BitmapFactory.decodeResource(getResources(), R.mipmap.head))
.setAutoCancel(true)
.build();
//Android 8.0 以上需包添加渠道
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationChannel notificationChannel = new NotificationChannel(CHANNEL_ID,
CHANNEL_NAME, NotificationManager.IMPORTANCE_LOW);
manager.createNotificationChannel(notificationChannel);
}
manager.notify(NOTIFY_ID, notification);
}
Notification 的一些配置,想了解更多比如推送附带响铃振动之类的可自行搜索或者查看源码
- setContentTitle 设置通知的标题(位于第一行)
- setContentText 设置通知的文本(位于第二行)
- setSmallIcon 通知布局中使用的小图标
- setContentIntent 在点击通知时发送的意图
- setLargeIcon 设置显示在提示和通知中的大图标
- setAutoCancel 在通知栏点击我们定义的通知是否自动取消显示
其中Android 8.0 以上的需要通过设置我们创建的NotificationChannel
其中 NOTIFY_ID参数,尽量设置为全局唯一,不然在其他地方发起的通知将会覆盖这边通知栏
关于需要点击标题栏传值
就和在intent 传值中一样,然后可在生命周期onCreate 中获取
传值
Intent hangIntent = new Intent(this, MainActivity.class);
hangIntent.putExtra("test", "测试数据");
获取值
getIntent().getStringExtra("test");
注意 有些做消息推送的功能,为了避免重复开启,若是前往的界面的启动模式为 singleTask
则需要通过onNewIntent 方法获取
@Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
Log.e("666",intent.getStringExtra("test"));
}
至此,简单讲完了Notification的一些基础知识,希望能够小伙伴们提供到帮助。
网友评论