Dialog源碼學(xué)習(xí)筆記
[TOC] (簡(jiǎn)書這個(gè)不支持嗎?)
Dialog源碼學(xué)習(xí)筆記Dialog中值得學(xué)習(xí)之-sendXXMessage
AlertController代碼分析記錄
Context.obtainStyledAttributes詳解
Dialog中值得學(xué)習(xí)之-sendXXMessage
在Dialog源碼中芬为,dialog的顯示與隱藏是通過(guò)mWindowManager.addView/removeViewImmediate來(lái)實(shí)現(xiàn)的州丹,并且當(dāng)dialog設(shè)置了
dialog.setOnShowListener();
dialog.setOnDismissListener();
dialog.setOnCancelListener();
的時(shí)候封豪,當(dāng)dialog顯示隱藏的時(shí)候都會(huì)回調(diào)給相應(yīng)的listener的褥影,是如何回調(diào)過(guò)去的呢飒筑?
本質(zhì)上還是調(diào)用各自的方法:
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的回調(diào)渤涌,這種思路挺贊的佩谣。
整體流程就是:
1、setOnShowListener的時(shí)候會(huì)把OnShowListener對(duì)象賦值給Message实蓬,并且通過(guò)mListenersHandler返回給mShowMessage茸俭,這個(gè)時(shí)候mShowMessage的obj就是該listener了。
public void setOnShowListener(OnShowListener listener) {
if (listener != null) {
mShowMessage = mListenersHandler.obtainMessage(SHOW, listener);
} else {
mShowMessage = null;
}
}
2安皱、當(dāng)dialog調(diào)用show的時(shí)候调鬓,會(huì)執(zhí)行sendShowMessage(),然后再讓mDismissMessage.sendToTarget()傳遞給mListenersHandler的handleMessage去執(zhí)行酌伊。
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()呢?
原因在內(nèi)部調(diào)用了obtain居砖,這個(gè)obtain里面實(shí)現(xiàn)了避免重復(fù)創(chuàng)建新的Message對(duì)象的機(jī)制虹脯。減少內(nèi)存的消耗!這個(gè)是sdk的開發(fā)者思考過(guò)的問題奏候,message在應(yīng)用中使用的頻率特別高归形,所以為了減少內(nèi)存消耗出此策略,點(diǎn)贊鼻由!
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();
}
總結(jié)一下:如果要我去實(shí)現(xiàn)一個(gè)listener的回調(diào)暇榴,大部分情況下是直接聲明一個(gè)listener的變量,什么地方需要執(zhí)行該listener的回調(diào)蕉世,什么地方就手動(dòng)調(diào)用一下蔼紧。
這里用
private Message mCancelMessage;
private Message mDismissMessage;
private Message mShowMessage;
替代了,感覺來(lái)說(shuō)會(huì)使代碼更合理些狠轻〖槔可能具體有什么好處,暫時(shí)參悟不出來(lái)向楼,如果有感興趣的人看到了這篇筆記查吊,可以給我回復(fù)一起探討下!
AlertController代碼分析記錄
AlertDialog extends Dialog implements DialogInterface {
private AlertController mAlert;
public static class Builder {
private final AlertController.AlertParams P;
}
}
首先AlertDialog的這個(gè)類的結(jié)構(gòu)大家是知道的湖蜕,使用了Builder設(shè)計(jì)模式逻卖。
在Dialog的show函數(shù)中,
if (!mCreated) {
dispatchOnCreate(null);
}
mDecor = mWindow.getDecorView();
mWindowManager.addView(mDecor, l);
會(huì)執(zhí)行onCreate函數(shù)創(chuàng)建view視圖昭抒,然后通過(guò)windowManager添加視圖评也,這樣一個(gè)彈窗就顯示在了界面中炼杖。
AlertDialog中的oncreate中調(diào)用的是AlertController.installContent函數(shù)
@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設(shè)置自定義view,則使用一個(gè)默認(rèn)的mAlertDialogLayout盗迟,這個(gè)默認(rèn)的
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中找到坤邪,太長(zhǎng)了,大概略讀了下罚缕,發(fā)現(xiàn)了里面有個(gè)
<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詳解
這個(gè)DialogTitle是個(gè)什么艇纺?在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 //......省略構(gòu)造函數(shù)
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}
仔細(xì)分析這段代碼,這段代碼主要的用途就是讓dialog的title最多顯示兩行邮弹,且如果是兩行黔衡,字體大小由原來(lái)的大號(hào)變成中號(hào)。
知識(shí)點(diǎn):
如果要計(jì)算textview的行數(shù)肠鲫,可以自定義這個(gè)textview员帮,并且在onMeasure方法中處理。因?yàn)閛nMeasure函數(shù)是在textview真正要開始布局的時(shí)候會(huì)執(zhí)行导饲,并且很多情況下可能會(huì)執(zhí)行多次捞高。
final Layout layout = getLayout();
if (layout != null) {
final int lineCount = layout.getLineCount();
if (lineCount > 0) {
這里可以跟進(jìn)getLayout的源碼,這個(gè)layout必須判空渣锦,注釋里說(shuō)當(dāng)這個(gè)textview的text或者width最近修改了硝岗,這個(gè)可能會(huì)為空的。
之前在項(xiàng)目開發(fā)中通過(guò)textPaint的各種手段計(jì)算出textview的行數(shù)袋毙,今天又發(fā)現(xiàn)了另外一種方法型檀。
之前一直沒有對(duì)mContext.obtainStyledAttributes做好好的分析,自己自定義view的時(shí)候一般用一些模板代碼套用听盖。
final TypedArray a = mContext.obtainStyledAttributes(
null,
android.R.styleable.TextAppearance,
android.R.attr.textAppearanceMedium,
android.R.style.TextAppearance_Medium);
第一個(gè)參數(shù)是xml文件中的定義的屬性集(理解為鍵值對(duì))胀溺,
第二個(gè)參數(shù)是R.styleable.TextAppearance即為要取出typeArray的目標(biāo)屬性(理解為鍵),
第三個(gè)是系統(tǒng)當(dāng)前theme下默認(rèn)的屬性集(理解為建值對(duì))皆看,
第四個(gè)是備用的一個(gè)style(理解為鍵值對(duì))仓坞,當(dāng)?shù)谌齻€(gè)屬性 找不到或者為0, 可以直接指定某個(gè)style腰吟。
第二個(gè)參數(shù)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" />
第三個(gè)參數(shù)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>
發(fā)現(xiàn)這里有兩個(gè)地方是textAppearanceMedium,但是一個(gè)是Theme毛雇,一個(gè)是Theme.Dialog嫉称,說(shuō)明不同的theme 指向不同的style,雖然這里還是指向同一個(gè)style灵疮。织阅。。
第四個(gè)參數(shù)在源碼的styles.xml中
<style name="TextAppearance.Medium">
<item name="textSize">18sp</item>
</style>
【摘抄】幾個(gè)參數(shù)的優(yōu)先級(jí)如下示:“>大于符號(hào)” xml里的顯示定義如 bar:attr1="12345">xml里的style定義如:android:style=@style/test>當(dāng)前theme>備用Style始藕。android系統(tǒng)會(huì)按照優(yōu)先級(jí)依次去查找蒲稳。大家有興趣可以自己做個(gè)實(shí)驗(yàn)看一看氮趋。
上述解釋需要好好體會(huì)一下伍派,總體來(lái)說(shuō)
final TypedArray a = mContext.obtainStyledAttributes(
null,
android.R.styleable.TextAppearance,
android.R.attr.textAppearanceMedium,
android.R.style.TextAppearance_Medium);
這段代碼就是獲取一個(gè)屬性值江耀,把a(bǔ)ndroid.R.styleable.TextAppearance里的textSize的屬性用@style/TextAppearance.Medium的
<item name="textSize">18sp</item>
來(lái)代替。因?yàn)榈谌齻€(gè)參數(shù)是表示系統(tǒng)當(dāng)前theme下默認(rèn)的屬性集是這個(gè)android.R.attr.textAppearanceMedium诉植,這里做法僅僅是代碼中臨時(shí)調(diào)整祥国,并不會(huì)真的改變當(dāng)前theme下的默認(rèn)屬性集,當(dāng)前theme是在activity或application中配置的晾腔。
一般自定義view獲取屬性模板代碼
TypedArray typedArray=context.obtainStyledAttributes(attrs, R.styleable.button);
this.setTextSize(typedArray.getDimension(R.styleable.button_textSize, 15));
typedArray.recycle();
我們通過(guò)下面的代碼
final int textSize = a.getDimensionPixelSize(
android.R.styleable.TextAppearance_textSize, 0);
取出來(lái)的textSize是px的單位舌稀,所以給textview設(shè)置的時(shí)候要指定單位。
android-getTextSize返回值是以像素(px)為單位的,setTextSize()以sp為單位
使用如下代碼時(shí)灼擂,發(fā)現(xiàn)字號(hào)不會(huì)變大壁查,反而會(huì)變小:
size = (int) mText.getTextSize() + 1;
mText.setTextSize(size);
后來(lái)發(fā)現(xiàn)getTextSize返回值是以像素(px)為單位的剔应,而setTextSize()是以sp為單位的睡腿,兩者單位不一致才造成這樣的結(jié)果。
這里可以用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);