Dialog源码学习笔记

Dialog源码学习笔记

[TOC] (简书这个不支持吗?)

Dialog源码学习笔记Dialog中值得学习之-sendXXMessage
AlertController代码分析记录
Context.obtainStyledAttributes详解

Dialog中值得学习之-sendXXMessage

在Dialog源码中,dialog的显示与隐藏是通过mWindowManager.addView/removeViewImmediate来实现的,并且当dialog设置了

dialog.setOnShowListener();
dialog.setOnDismissListener();
dialog.setOnCancelListener();

的时候,当dialog显示隐藏的时候都会回调给相应的listener的,是如何回调过去的呢?
本质上还是调用各自的方法:

private static final class ListenersHandler extends Handler {
 private WeakReference<DialogInterface> mDialog;

 public ListenersHandler(Dialog dialog) {
     mDialog = new WeakReference<DialogInterface>(dialog);
 }

 @Override
 public void handleMessage(Message msg) {
     switch (msg.what) {
         case DISMISS:
             ((OnDismissListener) msg.obj).onDismiss(mDialog.get());
             break;
         case CANCEL:
             ((OnCancelListener) msg.obj).onCancel(mDialog.get());
             break;
         case SHOW:
             ((OnShowListener) msg.obj).onShow(mDialog.get());
             break;
     }
 }
}

这里中间用Handler和Message去处理listener的回调,这种思路挺赞的。
整体流程就是:
1、setOnShowListener的时候会把OnShowListener对象赋值给Message,并且通过mListenersHandler返回给mShowMessage,这个时候mShowMessage的obj就是该listener了。

public void setOnShowListener(OnShowListener listener) {
        if (listener != null) {
            mShowMessage = mListenersHandler.obtainMessage(SHOW, listener);
        } else {
            mShowMessage = null;
        }
    }

2、当dialog调用show的时候,会执行sendShowMessage(),然后再让mDismissMessage.sendToTarget()传递给mListenersHandler的handleMessage去执行。

public void show() {
        //.......省略代码
        try {
            mWindowManager.addView(mDecor, l);
            mShowing = true;
    
            sendShowMessage();
        } finally {
        }
    }

private void sendDismissMessage() {
        if (mDismissMessage != null) {
            // Obtain a new message so this dialog can be re-used
            Message.obtain(mDismissMessage).sendToTarget();
        }
    }
private void sendShowMessage() {
    if (mShowMessage != null) {
        // Obtain a new message so this dialog can be re-used
        Message.obtain(mShowMessage).sendToTarget();
    }
}

这里再插一句:为什么一定要用Message.obtain(mShowMessage)呢?不直接mShowMessage.sendToTarget()呢?
原因在内部调用了obtain,这个obtain里面实现了避免重复创建新的Message对象的机制。减少内存的消耗!这个是sdk的开发者思考过的问题,message在应用中使用的频率特别高,所以为了减少内存消耗出此策略,点赞!

public static Message obtain(Message orig) {
        Message m = obtain();
        m.what = orig.what;
        m.arg1 = orig.arg1;
        m.arg2 = orig.arg2;
        m.obj = orig.obj;
        m.replyTo = orig.replyTo;
        m.sendingUid = orig.sendingUid;
        if (orig.data != null) {
            m.data = new Bundle(orig.data);
        }
        m.target = orig.target;
        m.callback = orig.callback;

        return m;
    }
    
    /**
     * Return a new Message instance from the global pool. Allows us to
     * avoid allocating new objects in many cases.
     */
    public static Message obtain() {
        synchronized (sPoolSync) {
            if (sPool != null) {
                Message m = sPool;
                sPool = m.next;
                m.next = null;
                m.flags = 0; // clear in-use flag
                sPoolSize--;
                return m;
            }
        }
        return new Message();
    }

总结一下:如果要我去实现一个listener的回调,大部分情况下是直接声明一个listener的变量,什么地方需要执行该listener的回调,什么地方就手动调用一下。
这里用

    private Message mCancelMessage;
    private Message mDismissMessage;
    private Message mShowMessage;

替代了,感觉来说会使代码更合理些。可能具体有什么好处,暂时参悟不出来,如果有感兴趣的人看到了这篇笔记,可以给我回复一起探讨下!

AlertController代码分析记录

AlertDialog extends Dialog implements DialogInterface {
    private AlertController mAlert;
    public static class Builder {
        private final AlertController.AlertParams P;
    }
}

首先AlertDialog的这个类的结构大家是知道的,使用了Builder设计模式。
在Dialog的show函数中,

if (!mCreated) {
    dispatchOnCreate(null);
}
mDecor = mWindow.getDecorView();
mWindowManager.addView(mDecor, l);

会执行onCreate函数创建view视图,然后通过windowManager添加视图,这样一个弹窗就显示在了界面中。

AlertDialog中的oncreate中调用的是AlertController.installContent函数

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    mAlert.installContent();
}

http://grepcode.com/中可以找到AlertController的源码

public void More ...installContent() {
232         /* We use a custom title so never request a window title */
233         mWindow.requestFeature(Window.FEATURE_NO_TITLE);
234         int contentView = selectContentView();
235         mWindow.setContentView(contentView);
236         setupView();
237         setupDecor();
238     }
239 
240     private int More ...selectContentView() {
241         if (mButtonPanelSideLayout == 0) {
242             return mAlertDialogLayout;
243         }
244         if (mButtonPanelLayoutHint == AlertDialog.LAYOUT_HINT_SIDE) {
245             return mButtonPanelSideLayout;
246         }
247         // TODO: use layout hint side for long messages/lists
248         return mAlertDialogLayout;
249     }

如果没有给AlertDialog设置自定义view,则使用一个默认的mAlertDialogLayout,这个默认的

 TypedArray a = context.obtainStyledAttributes(null,  com.android.internal.R.styleable.AlertDialog, com.android.internal.R.attr.alertDialogStyle, 0);
 mAlertDialogLayout = a.getResourceId(com.android.internal.R.styleable.AlertDialog_layout,  com.android.internal.R.layout.alert_dialog);

com.android.internal.R.layout.alert_dialog的文件可以在sdk中找到,太长了,大概略读了下,发现了里面有个

<com.android.internal.widget.DialogTitle android:id="@+id/alertTitle"
                style="?android:attr/textAppearanceLarge"
                android:singleLine="true"
                android:ellipsize="end"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:textAlignment="viewStart" />

Context.obtainStyledAttributes详解

这个DialogTitle是个什么?在grepcode中可以找到

public class More ...DialogTitle extends TextView {
31
32    public More ...DialogTitle(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
33        super(context, attrs, defStyleAttr, defStyleRes);
34    }
47    //......省略构造函数
48    @Override
49    protected void More ...onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
50        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
51
52        final Layout layout = getLayout();
53        if (layout != null) {
54            final int lineCount = layout.getLineCount();
55            if (lineCount > 0) {
56                final int ellipsisCount = layout.getEllipsisCount(lineCount - 1);
57                if (ellipsisCount > 0) {
58                    setSingleLine(false);
59                    setMaxLines(2);
60
61                    final TypedArray a = mContext.obtainStyledAttributes(null,
62                            android.R.styleable.TextAppearance, android.R.attr.textAppearanceMedium,
63                            android.R.style.TextAppearance_Medium);
64                    final int textSize = a.getDimensionPixelSize(
65                            android.R.styleable.TextAppearance_textSize, 0);
66                    if (textSize != 0) {
67                        // textSize is already expressed in pixels
68                        setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize);
69                    }
70                    a.recycle();
71
72                    super.onMeasure(widthMeasureSpec, heightMeasureSpec);      
73                }
74            }
75        }
76    }
77}

仔细分析这段代码,这段代码主要的用途就是让dialog的title最多显示两行,且如果是两行,字体大小由原来的大号变成中号。
知识点:
如果要计算textview的行数,可以自定义这个textview,并且在onMeasure方法中处理。因为onMeasure函数是在textview真正要开始布局的时候会执行,并且很多情况下可能会执行多次。

        final Layout layout = getLayout();
        if (layout != null) {
            final int lineCount = layout.getLineCount();
            if (lineCount > 0) {

这里可以跟进getLayout的源码,这个layout必须判空,注释里说当这个textview的text或者width最近修改了,这个可能会为空的。
之前在项目开发中通过textPaint的各种手段计算出textview的行数,今天又发现了另外一种方法。

之前一直没有对mContext.obtainStyledAttributes做好好的分析,自己自定义view的时候一般用一些模板代码套用。

final TypedArray a = mContext.obtainStyledAttributes(
 null,
 android.R.styleable.TextAppearance, 
 android.R.attr.textAppearanceMedium,
 android.R.style.TextAppearance_Medium);

第一个参数是xml文件中的定义的属性集(理解为键值对),
第二个参数是R.styleable.TextAppearance即为要取出typeArray的目标属性(理解为键),
第三个是系统当前theme下默认的属性集(理解为建值对),
第四个是备用的一个style(理解为键值对),当第三个属性 找不到或者为0, 可以直接指定某个style。

第二个参数android.R.styleable.TextAppearance在源码的attrs.xml的

<declare-styleable name="TextAppearance">
        <!-- Text color. -->
        <attr name="textColor" />
        <!-- Size of the text. Recommended dimension type for text is "sp" for scaled-pixels (example: 15sp). -->
        <attr name="textSize" />
        <!-- Style (bold, italic, bolditalic) for the text. -->
        <attr name="textStyle" />
        <!-- Typeface (normal, sans, serif, monospace) for the text. -->
        <attr name="typeface" />
        <!-- Font family (named by string) for the text. -->
        <attr name="fontFamily" />
        <!-- Color of the text selection highlight. -->
        <attr name="textColorHighlight" />
        <!-- Color of the hint text. -->
        <attr name="textColorHint" />
        <!-- Color of the links. -->
        <attr name="textColorLink" />
        <!-- Present the text in ALL CAPS. This may use a small-caps form when available. -->
        <attr name="textAllCaps" format="boolean" />

第三个参数android.R.attr.textAppearanceMedium在源码的attrs.xml的

<declare-styleable name="Theme">
<attr name="textAppearanceMedium" format="reference" />
</declare-styleable>

这里的格式是format="reference"即需要引用其它的属性,然后我在themes.xml中找到了该引用的地方:

<style name="Theme">
<item name="textAppearanceMedium">@style/TextAppearance.Medium</item>
</style>
<style name="Theme.Dialog">
<item name="textAppearanceMedium">@style/TextAppearance.Medium</item>
</style>

发现这里有两个地方是textAppearanceMedium,但是一个是Theme,一个是Theme.Dialog,说明不同的theme 指向不同的style,虽然这里还是指向同一个style。。。

第四个参数在源码的styles.xml中

<style name="TextAppearance.Medium">
        <item name="textSize">18sp</item>
    </style>

【摘抄】几个参数的优先级如下示:“>大于符号” xml里的显示定义如 bar:attr1="12345">xml里的style定义如:android:style=@style/test>当前theme>备用Style。android系统会按照优先级依次去查找。大家有兴趣可以自己做个实验看一看。

上述解释需要好好体会一下,总体来说

final TypedArray a = mContext.obtainStyledAttributes(
 null,
 android.R.styleable.TextAppearance, 
 android.R.attr.textAppearanceMedium,
 android.R.style.TextAppearance_Medium);

这段代码就是获取一个属性值,把android.R.styleable.TextAppearance里的textSize的属性用@style/TextAppearance.Medium的

<item name="textSize">18sp</item>

来代替。因为第三个参数是表示系统当前theme下默认的属性集是这个android.R.attr.textAppearanceMedium,这里做法仅仅是代码中临时调整,并不会真的改变当前theme下的默认属性集,当前theme是在activity或application中配置的。

一般自定义view获取属性模板代码

TypedArray typedArray=context.obtainStyledAttributes(attrs, R.styleable.button); 
    this.setTextSize(typedArray.getDimension(R.styleable.button_textSize, 15)); 
    typedArray.recycle();

我们通过下面的代码

final int textSize = a.getDimensionPixelSize(
android.R.styleable.TextAppearance_textSize, 0);

取出来的textSize是px的单位,所以给textview设置的时候要指定单位。
android-getTextSize返回值是以像素(px)为单位的,setTextSize()以sp为单位
使用如下代码时,发现字号不会变大,反而会变小:
size = (int) mText.getTextSize() + 1;
mText.setTextSize(size);
后来发现getTextSize返回值是以像素(px)为单位的,而setTextSize()是以sp为单位的,两者单位不一致才造成这样的结果。

这里可以用setTextSize()的另外一种形式,可以指定单位:
setTextSize(int unit, int size)
TypedValue.COMPLEX_UNIT_PX : Pixels
TypedValue.COMPLEX_UNIT_SP : Scaled Pixels
TypedValue.COMPLEX_UNIT_DIP : Device Independent Pixels

下面这样就正常了:
size = (int) mText.getTextSize() + 1;
mText.setTextSize(TypedValue.COMPLEX_UNIT_PX, size);

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,398评论 25 707
  • ¥开启¥ 【iAPP实现进入界面执行逐一显】 〖2017-08-25 15:22:14〗 《//首先开一个线程,因...
    小菜c阅读 6,350评论 0 17
  • afinalAfinal是一个android的ioc,orm框架 https://github.com/yangf...
    passiontim阅读 15,396评论 2 45
  • HTML表单作用 HTML表单是什么? 简单来说,HTML表单就是:能够让用户输入具体内容的信息表,比如邮箱注册 ...
    NathanYangcn阅读 798评论 0 1
  • 一曲梵音 穿梭在雾霾的雨丝中 一条木鱼 游向佛前的宫殿 凡尘袈裟抑制俗子欲望 般若文字 盛满慈悲的钵 芸芸众生 我...
    易文画影阅读 101评论 0 4