Android 通知的基本用法示例代码
写android通知的时候发现Notification的setLatestEventInfo被弃用,于是搜素并整理了一下新的android通知的基本用法。
一、获取NotificationManager实例
NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
二、创建Notification实例
在这里需要根据project的min-sdk来选择实现方法,MIN API Level < 11的可以使用setLatestEventInfo()方法,以下介绍API Level 11 之后的Notification实例获取方法。
1. MIN API Level < 16 构建Notification实例的方法
1) 创建Notification.Builder实例
Notification.Builder builder = new Notification.Builder(context)
.setAutoCancel(true) //设置点击通知后自动取消通知
.setContentTitle("title") //通知标题
.setContentText("describe") //通知第二行的内容
.setContentIntent(pendingIntent) //点击通知后,发送指定的PendingIntent
.setSmallIcon(R.drawable.ic_launcher); //通知图标,必须设置否则通知不显示
2) 调用Notification.Builder的getNotification()方法获得Notification
notification = builder.getNotification();
2. MIN API Level >=16 构建Notification实例的方法
Notification notification = new Notification.Builder(context)
.setAutoCancel(true)
.setContentTitle("title")
.setContentText("text")
.setSmallIcon(R.mipmap.ic_launcher)
.setContentIntent(pendingIntent)
.build();
三、发送通知
notificationManager.notify(1,notification);
以上就是对Android 通知栏的知识资料整理,后续继续补充,谢谢大家对本站的支持。
您可能感兴趣的文章:android实现通知栏下载更新app示例Android实现沉浸式通知栏通知栏背景颜色跟随app导航栏背景颜色而改变Android消息通知栏的实现方法介绍Android中通知Notification使用实例(振动、灯光、声音)android中创建通知栏Notification代码实例Android开发之禁止下拉通知栏的方法Android实现通知栏透明的方法Android程序版本更新之通知栏更新下载安装Android开发之使用通知栏显示提醒信息的方法Android中通过Notification&NotificationManager实现消息通知
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341