Android API Level在11前后及16之后时Notification的不同用法
作为刚入门Android的小白,最近在按照郭大神的《第一行代码》在练习,在用到Notification时遇到了一些问题,网上资料比较零散,我这里做了一个总结分析给各位,若有错误,恳请指正~
Notification是一种具有全局效果的通知,程序一般通过NotificationManager服务来发送Notification。
Notification支持文字内容显示、震动、三色灯、铃声等多种提示形式,在默认情况下,Notification仅显示消息标题、消息内容、送达时间这3项内容。
以下就是通知的基本布局:

不同API level的区别主要是Notification的构造方法、得到实例的方法,这里顺便总结一下Notification的用法,按照步骤分别给出不同API level下的做法:
1、获取Notification管理器
NotificationManager noteManager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
获取管理器的方式都一样,没有改变。
2、新建一个Notification,设置状态栏显示样式
这里只列举了最简单的样式设置,具体的大家可以参考API文档。
// API Level < 11 (Android 3.0)
Notification notification = new Notification(
R.mipmap.ic_launcher, "This is ticker text",
System.currentTimeMillis());
API<11时,可以直接用Notification的构造方法新建一个Notification,十分方便。
ps:我用的IDE是AndroidStudio,所以icon的id是R.mipmap.***。
// API Level >= 11 (Android 3.0) && API Level < 16 (Android 4.1)
Notification.Builder builder = new Notification.Builder(this)
.setSmallIcon(R.mipmap.ic_launcher)
.setTicker("This is ticker text")
.setWhen(System.currentTimeMillis());
Notification note = builder.getNotification(); // 调用getNotification()来生成Notification
API>11后,就要用Notification.Builder()来代替了,官方API是这样说的:
Notification(int icon, CharSequence tickerText, long when)
Notification.Builder instead.NotificationCompat.Builder, available in the Android Support library.//API Level >= 4 (Android 1.6) && API Level < 16 (Android 4.1)
NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
.setSmallIcon(R.mipmap.ic_launcher)
.setTicker("This is ticker text")
.setWhen(System.currentTimeMillis());
Notification note =builder.getNotification(); //调用builder.getNotification()来生成Notification
因此推荐用NotificationCompat.Builder这种方式。
注意到我在注释里写的 "&& API Level < 16 (Android 4.1)" 了吗?这是因为在Google官方API文档上是这么说的:
public Notification getNotification () Added in API level 11
This method was deprecated in API level .
Use build() instead
因此,当API>=16即Android4.1之后,就要用build()来代替了,使用方法一样,在此就不赘述了。
3、设置Notification的触发事件
点击Notification后,一般都是触发一个新的Activity:
Intent intent = new Intent(this, AnotherActivity.class);
PendingIntent pi = PendingIntent.getActivity(this, 0, intent,
PendingIntent.FLAG_CANCEL_CURRENT);
这里不同API版本都一样。
4、设置Notification在通知栏里的样式
// API Level < 11 (Android 3.0)
note.setLatestEventInfo(this, "This is content title", "This is content text", pi);
API<11时,调用的是Notification类的setLatestEventInfo方法。
// API Level >= 11 (Android 3.0)
builder.setContentIntent(pi)
.setContentTitle("This is content title")
.setContentText("This is content text");
而当API>=11时,设置通知栏中的样式是调用Builder的setContentIntent方法,设置好之后在调用build()方法生成Notification实例。
类似的,NotificationCompat.Builder也是调用同样的方法,这里就不赘述了。
5、发布该Notification
第一个参数为该notification的ID
noteManager.notify(1, note);
总结一下:
低版本(API低于11、16)中的部分方法已经被弃用:
(1)Notification.Builder(this).getNotification()
(2)mNotification.setLatestEventInfo(this, "title", "content", null);
建议开发过程中尽量使用NotificationCompat.Builder(this)的构建方法去创建一个通知类。
Android API Level在11前后及16之后时Notification的不同用法的更多相关文章
- Call requires API level 21(Current min is 16)
Call requires API level 21(Current min is 16) Android开发中,遇到类似这种问题,如何处理? 一种办法是提升sdk最低版本到21,在Android s ...
- Android api level对照表
转自:blog.csdn.net/lihenair/article/details/49869299 Platform Version API Level VERSION_CODE Notes And ...
- Android API level 版本对应关系
详情地址:http://developer.android.com/guide/topics/manifest/uses-sdk-element.html Platform Version API L ...
- Android API level 与version对应关系
https://www.cnblogs.com/jinglecode/p/7753107.html Platform Version API Level VERSION_CODE 中文名称 Andro ...
- android api level对应表(copy)
Platform Version API Level VERSION_CODE Notes Android 4.4 19 KITKAT Platform Highlights Android 4.3 ...
- Android API Level与sdk版本对照表
API等级1: Android 1.0 API等级2: Android 1.1 Petit Four 花式小蛋糕 API等级3: Android 1.5 Cupcake 纸杯蛋糕 API等级4: An ...
- Android API Guides 学习笔记---Application Fundamentals(一)
今天开始学习google官网上的API guides ,主要读了Application Fundamentals这一章节,此章节介绍了一个App的基本组成,共包括四大部分内容. 1. App ...
- Android Call requires API level 11 (current min is 8)的解决方案
[错误描述] 在用Eclipse开发过程中,为了兼容Android2.2和4.0以上版本,我在使用Notification类时做了2个版本的代码,代码根据系统版本不同执行相应模块,结果,等我输完代码, ...
- Android版本和API Level对应关系
http://developer.android.com/guide/topics/manifest/uses-sdk-element.html Platform Version API ...
随机推荐
- 深入理解JavaScript的闭包特性 如何给循环中的对象添加事件(转载)
原文参考:http://blog.csdn.net/gaoshanwudi/article/details/7355794 初学者经常碰到的,即获取HTML元素集合,循环给元素添加事件.在事件响应函数 ...
- ActionScript简单实现Socket Tcp应用协议分析器
转自..smark http://www.cnblogs.com/smark/archive/2012/05/15/2501507.html ActionScript简单实现Socket Tcp应用协 ...
- git 在苹果系统中的一些命令
下面是在mac下使用git的一些命令的使用,如果想参看原文使用xcode来处理git,可以进入下面的链接,不过是英文的. 使用终端命令终端: cd /Users/Malek/desktop/GitUs ...
- 【深搜加剪枝】【HDU1455】【Sticks】
题目大意:有一堆木棍 由几个相同长的木棍截出来的,求那几个相同长的木棍最短能有多短? 深搜+剪枝 具体看代码 #include <cstdio> #include <cstdlib& ...
- Android学习Tabhost、gallery、listview、imageswitcher
Tabhost控件又称分页控件,在很多的开发语言中都存在.它可以拥有多个标签页,每个标签页可以拥有不同的内容.android中,一个标签页可以放 一个view或者一个activity.TabHost是 ...
- SQL————高级查询
高级查询 --连接查询 select * from 表1,表2 ————形成笛卡尔积 select * from 表1,表2 where 表1.主键=表2.外键 ————主外键位置可以互换 --jo ...
- Database name和SID
http://docs.oracle.com/cd/B19306_01/install.102/b15667/rev_precon_db.htm#i1027493 The Oracle Databas ...
- beforefieldinit释义(3)
1.看下面的例子: public static class MyClass<T> { public static readonly DateTime Time = GetNow(); pr ...
- Java中创建对象的5种方式 &&new关键字和newInstance()方法的区别
转载:http://www.kuqin.com/shuoit/20160719/352659.html 用最简单的描述来区分new关键字和newInstance()方法的区别:newInstance: ...
- Linux学习--alias命令
alias用于设置命令的别名,具体相应命令如下: 1.alias显示当前设置的别名 2.设置命令别名: alias 命令名=‘别名命令’ 3.显示指定的别名设置:alias name 4.取消相应 ...