深入理解Android中的建造者模式
前言
在Android開發(fā)過程中,我發(fā)現(xiàn)很多安卓源代碼里應(yīng)用了設(shè)計(jì)模式,比較常用的有適配器模式(各種adapter),建造者模式(Alert Dialog的構(gòu)建)等等。雖然我們對大多數(shù)設(shè)計(jì)模式都有所了解,但是在應(yīng)用設(shè)計(jì)模式的這個(gè)方面,感覺很多人在這方面有所不足。所以這篇文章我們一起深入的理解Android中的建造者模式。
建造者模式(Builder Pattern)也叫生成器模式,其定義如下:
separate the construction of a complex object from its representation so that the same construction process can create different representations.將一個(gè)復(fù)雜對象的構(gòu)建與它的標(biāo)示分離,這樣的話就可以使同樣的構(gòu)建過程可以創(chuàng)建不同的表示。
我的理解:就是把一個(gè)產(chǎn)品(對象)表示(展示)和構(gòu)建(創(chuàng)建)過程分離開來,這樣產(chǎn)品的構(gòu)建流程相同卻可以有不同的產(chǎn)品表示。
應(yīng)用場景
這里舉出Android中常見的例子:
android中的AlertDialog對話框的構(gòu)建過程就是建造者模式的典型應(yīng)用。

看一下Builder源碼
public static class Builder {
private final AlertController.AlertParams P;
public Builder(Context context) {
this(context, resolveDialogTheme(context, 0));
}
public Builder(Context context, int themeResId) {
P = new AlertController.AlertParams(new ContextThemeWrapper(
context, resolveDialogTheme(context, themeResId)));
}
//各種set參數(shù)方法
setTitle()
...
...
...
/**
* Creates an {@link AlertDialog} with the arguments supplied to this
* builder.
* <p>
* Calling this method does not display the dialog. If no additional
* processing is needed, {@link #show()} may be called instead to both
* create and display the dialog.
*/
public AlertDialog create() {
// Context has already been wrapped with the appropriate theme.
final AlertDialog dialog = new AlertDialog(P.mContext, 0, false);
P.apply(dialog.mAlert);
dialog.setCancelable(P.mCancelable);
if (P.mCancelable) {
dialog.setCanceledOnTouchOutside(true);
}
dialog.setOnCancelListener(P.mOnCancelListener);
dialog.setOnDismissListener(P.mOnDismissListener);
if (P.mOnKeyListener != null) {
dialog.setOnKeyListener(P.mOnKeyListener);
}
return dialog;
}
// 這個(gè)show方法是builder對象的,里面封裝了create()和show()可以直接調(diào)取創(chuàng)建并顯示對話框
public AlertDialog show() {
final AlertDialog dialog = create();
dialog.show();
return dialog;
}
}
分析源碼可以看到內(nèi)部類Builder是用來構(gòu)建這個(gè)對話框的:
1、創(chuàng)建builder的時(shí)候,會(huì)把這個(gè)AlertController.AlertParams P;對象P創(chuàng)建new出來
2、在對bilder設(shè)置各種參數(shù)的時(shí),這些參數(shù)都存在了對象P中
3、然后builder參數(shù)設(shè)置完畢后在調(diào)用create方法。
final AlertDialog dialog = new AlertDialog(P.mContext, 0, false); P.apply(dialog.mAlert); // mAlert是外部類中的
這個(gè)方法中會(huì)首先調(diào)用外部類AlertDialog的構(gòu)造方法,new出一個(gè)外部類對象,然后p.apply()方法會(huì)將P這個(gè)對象作為內(nèi)部類的屬性賦值給AlertController的對象mAlert。這樣就完成了一次的構(gòu)建。
下面是AlertDialog的部分源碼
public class AlertDialog extends Dialog implements DialogInterface {
// 這個(gè)對象用來承接builder內(nèi)部所設(shè)置的參數(shù)
private AlertController mAlert;
//以下幾個(gè)構(gòu)造方法決定只能通過內(nèi)部類builder來構(gòu)建
protected AlertDialog(Context context) {
this(context, 0);
}
protected AlertDialog(Context context, boolean cancelable, OnCancelListener cancelListener) {
this(context, 0);
setCancelable(cancelable);
setOnCancelListener(cancelListener);
}
protected AlertDialog(Context context, @StyleRes int themeResId) {
this(context, themeResId, true);
}
AlertDialog(Context context, @StyleRes int themeResId, boolean createContextThemeWrapper) {
super(context, createContextThemeWrapper ? resolveDialogTheme(context, themeResId) : 0,
createContextThemeWrapper);
mWindow.alwaysReadCloseOnTouchAttr();
mAlert = new AlertController(getContext(), this, getWindow());
}
}
總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對各位Android開發(fā)者們能有所幫助,如果有疑問大家可以留言交流。
- java設(shè)計(jì)模式之建造者模式學(xué)習(xí)
- php設(shè)計(jì)模式 Builder(建造者模式)
- C++設(shè)計(jì)模式之建造者模式
- JavaScript設(shè)計(jì)模式之建造者模式介紹
- Java運(yùn)用設(shè)計(jì)模式中的建造者模式構(gòu)建項(xiàng)目的實(shí)例解析
- JS建造者模式基本用法實(shí)例分析
- 深入理解JavaScript系列(27):設(shè)計(jì)模式之建造者模式詳解
- Java設(shè)計(jì)模式之建造者模式(Builder模式)介紹
- 深入解析Python設(shè)計(jì)模式編程中建造者模式的使用
- iOS App設(shè)計(jì)模式開發(fā)中對建造者模式的運(yùn)用實(shí)例
相關(guān)文章
FFmpeg Principle學(xué)習(xí)open_output_file打開輸出文件
這篇文章主要為大家介紹了FFmpeg Principle學(xué)習(xí)open_output_file打開輸出文件示例解析,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-10-10
Android中AndroidStudio&Kotlin安裝到運(yùn)行過程及常見問題匯總
這篇文章主要介紹了Android(AndroidStudio&Kotlin)安裝到運(yùn)行過程及常見問題匯總,本文通過圖文并茂的形式給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒借鑒價(jià)值,需要的朋友可以參考下2020-03-03
Android自定義View制作動(dòng)態(tài)炫酷按鈕實(shí)例解析
這篇文章主要為大家詳細(xì)解析了Android自定義View制作動(dòng)態(tài)炫酷按鈕實(shí)例,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2016-07-07
Android編程實(shí)現(xiàn)對話框Dialog背景透明功能示例
這篇文章主要介紹了Android編程實(shí)現(xiàn)對話框Dialog背景透明功能,涉及Android對話框的布局、屬性及事件處理相關(guān)操作技巧,需要的朋友可以參考下2017-07-07
Android獲取當(dāng)前位置的經(jīng)緯度數(shù)據(jù)
這篇文章主要介紹了Android獲取當(dāng)前位置的經(jīng)緯度數(shù)據(jù)的相關(guān)資料,需要的朋友可以參考下2016-02-02
Android播放多張圖片形成的一個(gè)動(dòng)畫示例
這篇文章主要介紹了Android播放多張圖片形成的一個(gè)動(dòng)畫實(shí)現(xiàn)方法,結(jié)合實(shí)例形式分析了Android逐幀播放動(dòng)畫圖片及ImageView控件的相關(guān)使用技巧,需要的朋友可以參考下2016-10-10

