美文网首页androidAndroid知识Android技术知识
Notification之----Android5.0实现原理(

Notification之----Android5.0实现原理(

作者: Hly_Coder | 来源:发表于2016-12-02 15:41 被阅读1120次

概述

写这篇文章的起因是当我自定义通知栏样式时,设置的view高度最终只能显示为通知栏的默认高度(64dp),让人十分困惑,于是研究了下源码。
除了解开真相意外,还了解到了包括bigview,pengdingintent的点击事件,通知栏限制等知识点,收获颇多,在这里分享给大家。希望能让大家明白一个通知是如何添加到状态栏上面去的,如果遇到奇怪的问题不至于抓瞎。

前提

本文是以android5.0的源码为基础的并且假设大家都知道notification的基本用法。

构造通知

在我们使用NotificationCompat.Builder对象设置完各种参数(小/大图标,标题,内容等)后,最后会调用build方法来得到一个Notification,然后使用NotificationManager来发出通知。我们就先来看看build方法做了什么事。
NotificationCompat是v4包中的一个类,做了android各个版本的兼容,但是不论是哪个版本,最后build方法都是调用的Notification的build方法,所以我们直接看Notification的build方法。
frameworks/base/core/java/android/app/Notification.java

/**
 * Combine all of the options that have been set and return a new {@link Notification}
 * object.
 */
public Notification build() {
    ... 
    //设置通知的默认信息
    Notification n = buildUnstyled();

   //设置通知的样式信息
    if (mStyle != null) {
        n = mStyle.buildStyled(n);
    }
    ...
    return n;
}

方法的注释说得很清楚了,就是将所有的设置选项联合在一起返回一个新的通知。

buildUnstyled

其中buildUnstyled()所说的默认信息就是在android4.0以前还不能展开的时候所包括的所有信息,包括大/小图标,时间,标题,内容,自定义view等信息。

/**
 * Apply the unstyled operations and return a new {@link Notification} object.
 * @hide
 */
public Notification buildUnstyled() {
    Notification n = new Notification();
    n.when = mWhen;
    n.icon = mSmallIcon;
    ...
    setBuilderContentView(n, makeContentView());
    n.contentIntent = mContentIntent;
    ...
    setBuilderBigContentView(n, makeBigContentView());
    setBuilderHeadsUpContentView(n, makeHeadsUpContentView());
    // Note: If you're adding new fields, also update restoreFromNotitification().
    return n;
}

setBuilderContentView用于设置通知栏的ContentView属性

private void setBuilderContentView(Notification n, RemoteViews contentView) {
    n.contentView = contentView;
    ...
}

makeContentView()是构造出所需要填充的view

private RemoteViews makeContentView() {
    if (mContentView != null) {
        return mContentView;
    } else {
        return applyStandardTemplate(getBaseLayoutResource());
    }
}

如果你没有使用自定view,将会使用标准的模板样式

private int getBaseLayoutResource() {
     return R.layout.notification_template_material_base;
}

这里只讲了setBuilderContentView(n, makeContentView());方法, 后面的setBuilderBigContentView(n, makeBigContentView());setBuilderHeadsUpContentView(n, makeHeadsUpContentView());方法与其类似都是设置通知的相应属性,直接给出结果,不再累述
<pre>
setBuilderHeadsUpContentView --> n.headsUpContentView
setBuilderBigContentView --> n.bigContentView = bigContentView;
</pre>

这样,通知的显示内容就已经构造好了。

1 .可以看出,在构造阶段,并没有对通知栏的自定义view高度做出限制,但最后显示的时候却是一个固定高度,why?
2.先记住这里的bigContentView属性,后面会在提到。

buildStyled

4.0后如果设置了BigText,BigPic等样式,则会调用buildStyled方法。buildStyled是Notification.Style中的一个方法

public Notification buildStyled(Notification wip) {
    ...
    populateBigContentView(wip);
    ...
    return wip;
}

populateBigContentView是一个protected所修饰的方法,具体的实现是在所设置的Style中,这里里BigPic Style为例,在BigPictureStyle类中,重写了该方法

@Override
public void populateBigContentView(Notification wip) {
    mBuilder.setBuilderBigContentView(wip, makeBigContentView());
}
private RemoteViews makeBigContentView() {
    RemoteViews contentView = getStandardView(mBuilder.getBigPictureLayoutResource());
    contentView.setImageViewBitmap(R.id.big_picture, mPicture);
    ...
    return contentView;
}
private int getBigPictureLayoutResource() {
    return R.layout.notification_template_material_big_picture;
}

如果是BigPic Style样式的通知,其实也是调用了系统中设置的一个模板布局notification_template_material_big_picture.
这里又调用了一次mBuilder.setBuilderBigContentView,前面提到了该方法是给notification的bigContentView的属性赋值。所以如果设置了样式,则会覆盖默认的bigContentView值

总结

在通知构造环节,我们需要记住做了最重要的2件事

  1. 给Notification的contentView属性赋值,该值可以是自定义的view也可以是系统默认样式的view
  2. 给Notification的bigContentView属性赋值,该值可以使自定义的view也可以是系统默认样式的view

相关阅读

Notification之---NotificationListenerService5.0实现原理
Notification之----Android5.0实现原理(二)
Notification之----自定义样式
Notification之----默认样式
Notification之----任务栈

相关文章

网友评论

    本文标题:Notification之----Android5.0实现原理(

    本文链接:https://www.haomeiwen.com/subject/xgxqmttx.html