概述
随着android版本的不断升级,google在4.1, 5.0,7.0上不断的推出了几款通知样式来满足不同的需求。相对于普通样式,可能很多同学相对陌生。笔者也是逐一写demo尝试了不同样式,其中也有许多需要注意的地方,在这里做个总结,希望能帮助到有需要的童鞋。
前提
既然是Notification,有3个要素一定要记住设置,不论是什么样式,不然可能会出现无法显示出通知的结果。
- 小图标,由 setSmallIcon()设置
- 标题,由 setContentTitle()设置
- 详细文本,由 setContentText()设置
API Level 14(ICE_CREAM_SANDWICH)
Progress
builder.setTicker("ProcessNotification");
builder.setContentTitle("ProcessNotification");
builder.setContentText("ProcessNotificationProcessNotificationProcessNotification");
new Thread(
new Runnable() {
@Override
public void run() {
int incr;
for (incr = 0; incr <= 100; incr+=5) {
builder.setProgress(100, incr, false);
manager.notify(0, builder.build());
try {
Thread.sleep(1*1000);
} catch (InterruptedException e) {}
}
builder.setContentText("Download complete");
// Removes the progress bar
builder.setProgress(0,0,false);
manager.notify(0, builder.build());
}
}
).start();
如果需要使用进度条,可以不自定义view直接试用process就行了。
效果如下
API Level 16(JB)样式
BigTextStyle
String content = "BigTextNotificationBigTextNotificationBigTextNotificationBigTextNotification
BigTextNotificationBigTextNotificationBigTextNotificationBigTextNotificationBigTextNotification
BigTextNotificationBigTextNotificationBigTextNotificationBigTextNotificationBigTextNotification
BigTextNotificationBigTextNotificationBigTextNotificationBigTextNotification
BigTextNotificationBigTextNotificationBigTextNotificationBigTextNotification12312312312";
builder.setTicker("Ticker");
builder.setSmallIcon(R.mipmap.ic_launcher);
builder.setLargeIcon(BitmapFactory.decodeResource(mContext.getResources(), R.mipmap.ic_launcher))
builder.setContentTitle("ContentTitle");
builder.setContentText(content);
builder.setStyle(new NotificationCompat.BigTextStyle()
.bigText(content)
.setSummaryText("Summary")
.setBigContentTitle("BigContentTitle"));
效果图如下
默认情况下,只显示标准的样式,但是当你下拉该条通知的时候,就会显示出bigText的样式,该样式最高高度为256dp
InboxStyle
builder.setTicker("InBoxNotification");
builder.setContentTitle("InBoxNotification");
builder.setContentText("InBoxNotificationInBoxNotification");
builder.setStyle(new NotificationCompat.InboxStyle()
.setBigContentTitle("BigContentTitle")
.setSummaryText("summartText")
.addLine("1. first").addLine("2. second") .addLine("3. third") .addLine("4. fouth")
.addLine("5. five").addLine("6. six") .addLine("7. seven").addLine("8. eight")
.addLine("9. nine").addLine("10. ten").addLine("11. eleven"));
效果图如下
默认情况下,只显示标准的样式,但是当你下拉该条通知的时候,就会显示出Inbox的样式,该样式最高高度为256dp
BigPic
builder.setTicker("PicNotification");
builder.setContentTitle("ContentTitle");
builder.setContentText("PicNotificationPicNotificationPicNotification");
builder.setStyle(new NotificationCompat.BigPictureStyle()
.setBigContentTitle("BigContentTitle")
.setSummaryText("SummaryText")
.bigPicture(BitmapFactory.decodeResource(mContext.getResources(), R.drawable.bigpic))
.bigLargeIcon(BitmapFactory.decodeResource(mContext.getResources(), R.drawable.bigpic)));
效果图如下
默认情况下,只显示标准的样式,但是当你下拉该条通知的时候,就会显示出BigPic的样式,该样式最高高度为256dp。 LargeIcon是左上角的相对较小的图, Picture是下方最大的图
API Level 21(L)
hands-up
builder.setTicker("FloatNotification");
builder.setContentTitle("FloatNotification title");
builder.setContentText("FloatNotification ContentText");
//must set vibrate or ringtong with high/max priority
builder.setVibrate(new long[0]);
builder.setPriority(Notification.PRIORITY_HIGH);
//or set full screen intent
//builder.setFullScreenIntent(pendingIntentA, true);
Intent intentA = new Intent(mContext, ActivityA.class);
PendingIntent pendingIntentA = PendingIntent.getActivity(mContext, 0, intentA,
PendingIntent.FLAG_UPDATE_CURRENT);
Intent intentB = new Intent(mContext, ActivityB.class);
PendingIntent pendingIntentB = PendingIntent.getActivity(mContext, 0, intentB,
PendingIntent.FLAG_UPDATE_CURRENT);
builder.addAction(R.mipmap.ic_launcher, "ActivityA", pendingIntentA);
builder.addAction(R.mipmap.ic_launcher, "ActivityB", pendingIntentB);
效果图如下
当我们处于亮屏状态时,会出现一个悬浮的通知栏告诉用户有通知来了,并且可以设置Action做相对应的动作。
如果我们收起了悬浮通知,在状态栏中会显示默认样式,点击或者下拉展开后就又是悬浮的样式了
注意:
如果想要出现悬浮通知栏是有条件的,以下2个必须至少满足一个。
- 设置PRIORITY_HIGH或者PRIORITY_MAX的优先级 并且同时设置震动或者铃声
- 使用setFullScreenIntent的方式
Visibility
严格来说,这只是属于notification的一个显示策略,不算样式,不过也列出来.
builder.setTicker("NormalNotification");
builder.setContentTitle("NormalNotification");
builder.setContentText("NormalNotification ContentText");
builder.setVisibility(NotificationCompat.VISIBILITY_PRIVATE);
效果图如下
在锁屏界面如果设置了VISIBILITY_PRIVATE,是不会显示内容的,如果设置了VISIBILITY_SECRET则在锁屏界面什么都不会显示
解锁以后,和普通通知是一样的。
注意:
要让该设置起效,必须满足下面的条件
- 锁屏界面是密码锁屏(PIN 图案等)
- 在系统设置中选择密码锁屏后,还需要设置"隐藏敏感信息"(Hide sensitive notification content)
如果没有同时满足上面2个条件,这个设置将不会起效果
API Level 24(N)
MessagingStyle
builder.setStyle(new NotificationCompat.MessagingStyle("DisplayName2")
.addMessage("addMessageA", (int)System.currentTimeMillis(), "sender1")
.addMessage("addMessageB", (int)System.currentTimeMillis(), "sender2")
.addMessage("addMessageC", (int)System.currentTimeMillis(), "sender3")
.addMessage("addMessageD", (int)System.currentTimeMillis(), "sender4")
.setConversationTitle("ConversationTitle"));
在代码中,显示了2条MessagingStyle样式的通知,效果如下
收起前就是一个普通通知,点击展开后可以看出是按照DisplayName来进行分组的,这个样式和Inbox样式十分相似。
备注
可以看出,在android N上,通知的默认样式已经做了修改
注意
如果想在N上使用该样式,v4包也必须是相对应的24版本,不然找不到该样式.
总结
以上就是在android各个版本中默认的通知样式,大家可以到v4包里面看下,不同的样式所支持的方法,其实并不多,掌握起来会比较方便。上文讲了一些笔者遇到的坑,如果还有错过的地方欢迎大家留言指出.。-
More
如果这些样式不能满足你的需求,那么就只有自定义通知栏样式了,自定义样式也要根据不同的android版本来做不同的定义,比如在大于android JB的版本上就可以支持展开默认通知显示bigview,详情请点击Notification之----自定义样式
相关阅读
Notification之----Android5.0实现原理(二)
Notification之----Android5.0实现原理(一)
Notification之---NotificationListenerService5.0实现原理
Notification之----自定义样式
Notification之----任务栈