Dialog和AlertDialog及ProgressDialog

Dialog/AlertDialog/ProgressDialog關(guān)系類圖

dialog_uml_class_screenshot.png

Dialog

1. 圓形旋轉(zhuǎn)進(jìn)度樣式

public Dialog createSpinnerDialog(Context context, String msg) {
    LayoutInflater inflater = LayoutInflater.from(context);
    View view = inflater.inflate(R.layout.spinner_style_dialog, null);

    LinearLayout linearLayout = (LinearLayout) view.findViewById(R.id.ll_spinner_dialog);
    ImageView imageView = (ImageView) view.findViewById(R.id.iv_spinner);
    TextView textView = (TextView) view.findViewById(R.id.tv_spinner);

    Animation animation = AnimationUtils.loadAnimation(context, R.anim.loading_animation);
    imageView.startAnimation(animation);

    textView.setText(msg);

    Dialog dialog = new Dialog(context, R.style.loading_dialog);
    dialog.setCancelable(true);         // 設(shè)置按返回鍵時取消對話框
    dialog.setCanceledOnTouchOutside(false);    // 設(shè)置點擊對話框外部時不取消對話框,默認(rèn)為true
    dialog.setContentView(linearLayout, new LinearLayout.LayoutParams(
            LinearLayout.LayoutParams.MATCH_PARENT,
            LinearLayout.LayoutParams.MATCH_PARENT
    ));
    return dialog;
}

創(chuàng)建對話框并顯示

createSpinnerDialog(this, "正在加載中...").show();

效果演示

dialog_style_spinner.gif

2. 幀動畫進(jìn)度樣式

public Dialog createFrameDialog(Context context, String msg){
    LayoutInflater inflater = LayoutInflater.from(context);
    View view = inflater.inflate(R.layout.frame_style_dialog, null);

    LinearLayout linearLayout = (LinearLayout) view.findViewById(R.id.ll_frame_dialog);
    ImageView imageView = (ImageView) view.findViewById(R.id.iv_frame);
    TextView textView = (TextView) view.findViewById(R.id.tv_frame);

    AnimationDrawable ad = (AnimationDrawable) imageView.getDrawable();
    ad.start();

    textView.setText(msg);

    Dialog dialog = new Dialog(context, R.style.loading_dialog);    //
    dialog.setCancelable(true);         // 設(shè)置按返回鍵時取消對話框
    dialog.setCanceledOnTouchOutside(false);    // 設(shè)置點擊對話框外部時不取消對話框涌韩,默認(rèn)為true
    dialog.setContentView(linearLayout, new LinearLayout.LayoutParams(
            LinearLayout.LayoutParams.MATCH_PARENT,
            LinearLayout.LayoutParams.MATCH_PARENT
    ));
    return dialog;
}

創(chuàng)建對話框并顯示

createFrameDialog(this, "正在加載中...").show();

效果演示

dialog_style_frame.gif

AlertDialog

1. 提示對話框

private void showAlertDialog() {
    // 使用建造者模式創(chuàng)建對話框
    AlertDialog.Builder builder = new AlertDialog.Builder(this);
    builder.setIcon(R.drawable.ic_android_green_a700_24dp);     // 圖標(biāo)
    builder.setTitle(R.string.text_alert_title);                // 標(biāo)題
    builder.setMessage(R.string.text_alert_msg);                // 消息內(nèi)容
    // 確定性質(zhì)的按鈕 (是项栏,有吼驶,確定)
    builder.setPositiveButton(R.string.text_alert_btn_positive, new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            Toast.makeText(MainActivity.this, R.string.text_alert_btn_positive_tip, Toast.LENGTH_SHORT).show();
        }
    });
    // 否定性質(zhì)的按鈕 (否驶沼,沒有,取消)
    builder.setNegativeButton(R.string.text_alert_btn_negative, new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            Toast.makeText(MainActivity.this, R.string.text_alert_btn_negative_tip, Toast.LENGTH_SHORT).show();
        }
    });
    // 中立性質(zhì)的按鈕 (不確定,沉默,保密假哎,忽略,詳細(xì))
    builder.setNeutralButton(R.string.text_alert_btn_neutral, new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            Toast.makeText(MainActivity.this, R.string.text_alert_btn_neutral_tip, Toast.LENGTH_SHORT).show();
        }
    });
    // 通過建造者來創(chuàng)建對話框
    AlertDialog dialog = builder.create();      // -
    // 顯示對話框
    dialog.show();                              // -

    // 直接使用建造者顯示對話框
    // builder.show();                             // +
}

效果演示

alert_dialog_alert.gif

2. 簡單列表對話框

private void showSimpleListDialog() {
    AlertDialog.Builder builder = new AlertDialog.Builder(this);
    // builder.setTitle(R.string.text_list_simple_title);
    final String[] platforms = getResources().getStringArray(R.array.platforms);
    // 設(shè)置簡單列表的子項內(nèi)容
    builder.setItems(platforms, new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            Toast.makeText(MainActivity.this, "Selected: " + platforms[which], Toast.LENGTH_SHORT).show();
        }
    });
    builder.show();
}

效果演示

alert_dialog_list_simple.gif

3. 單選列表對話框

private void showRadioListDialog() {
    AlertDialog.Builder builder = new AlertDialog.Builder(this);
    builder.setTitle(R.string.text_list_radio_title);
    final String[] cities = getResources().getStringArray(R.array.cities);
    int checkedItem = 0;
    final String[] result = {cities[checkedItem]};
    // 設(shè)置單選子項的內(nèi)容
    builder.setSingleChoiceItems(cities, checkedItem, new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            result[0] = cities[which];
        }
    });
    builder.setPositiveButton(R.string.text_list_radio_btn_positive, new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            Toast.makeText(MainActivity.this, "Selected: " + result[0], Toast.LENGTH_SHORT).show();
        }
    });
    builder.setNegativeButton(R.string.text_list_radio_btn_negative, new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            Toast.makeText(MainActivity.this, "Default: " + result[0], Toast.LENGTH_SHORT).show();
        }
    });
    builder.show();
}

效果演示

alert_dialog_list_radio.gif

4. 多選列表對話框

private void showCheckListDialog() {
    AlertDialog.Builder builder = new AlertDialog.Builder(this);
    builder.setTitle(R.string.text_list_check_title);
    final String[] languages = getResources().getStringArray(R.array.languages);
    final List<String> results = new ArrayList<>();
    // 設(shè)置多選子項內(nèi)容
    builder.setMultiChoiceItems(languages, null, new DialogInterface.OnMultiChoiceClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which, boolean isChecked) {
            if (isChecked) {
                results.add(languages[which]);
            } else {
                results.remove(languages[which]);
            }
        }
    });
    builder.setPositiveButton(R.string.text_list_check_btn_positive, new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            Toast.makeText(MainActivity.this, results.toString(), Toast.LENGTH_SHORT).show();
        }
    });
    builder.setNegativeButton(R.string.text_list_check_btn_negative, new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            Toast.makeText(MainActivity.this, R.string.text_list_check_btn_negative, Toast.LENGTH_SHORT).show();
            results.clear();
        }
    });
    builder.show();
}

效果演示

alert_dialog_list_check.gif

5. 自定義適配器對話框

private void showCustomAdapterDialog() {
    AlertDialog.Builder builder = new AlertDialog.Builder(this);

    final List<User> mUserList = new ArrayList<>();
    mUserList.add(new User(R.drawable.ic_user_avatar, "Stephen Curry"));
    mUserList.add(new User(R.drawable.ic_user_avatar, "Kevin Durant"));
    CustomAdapter adapter = new CustomAdapter(this, mUserList);
    // 設(shè)置自定義數(shù)據(jù)適配器鞍历,用于內(nèi)部的ListView
    builder.setAdapter(adapter, new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            Toast.makeText(MainActivity.this, "Selected: " + mUserList.get(which).getName(), Toast.LENGTH_SHORT).show();
        }
    });
    builder.show();
}

效果演示

alert_dialog_custom_adapter.gif

6. 自定義視圖對話框

private void showCustomViewDialog() {
    AlertDialog.Builder builder = new AlertDialog.Builder(this);
    builder.setIcon(R.drawable.ic_user_signin);
    builder.setTitle(R.string.text_custom_view_title);
    // builder.setView(R.layout.layout_signin);    // API21
    final View view = getLayoutInflater().inflate(R.layout.layout_signin, null);
    builder.setView(view);      // 設(shè)置自定義內(nèi)容視圖
    builder.setPositiveButton(R.string.text_custom_view_btn_positive, new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            EditText mUsernameEt = (EditText) view.findViewById(R.id.et_username);
            EditText mPasswordEt = (EditText) view.findViewById(R.id.et_password);
            String username = mUsernameEt.getText().toString();
            String password = mPasswordEt.getText().toString();
            String info = String.format(Locale.getDefault(), "[%s:%s]", username, password);
            Toast.makeText(MainActivity.this, info, Toast.LENGTH_SHORT).show();
        }
    });
    builder.setNegativeButton(R.string.text_custom_view_btn_negative, new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            Toast.makeText(MainActivity.this, R.string.text_custom_view_btn_negative, Toast.LENGTH_SHORT).show();
        }
    });
    builder.show();
}

效果演示

alert_dialog_custom_view.gif

ProgressDialog

ProgressDialog基本使用說明

1. 創(chuàng)建ProgressDialog的兩種方式

  • 使用new來創(chuàng)建一個ProgressDialog實例
ProgressDialog dialog = new ProgressDialog(this);
dialog.show();
  • 調(diào)用ProgressDialog中的靜態(tài)方法show()
ProgressDialog dialog = ProgressDialog.show(this, null, "正在加載...");

靜態(tài)方法show()的參數(shù)說明

public static ProgressDialog show(
    Context context,                // 上下文 
    CharSequence title,             // 標(biāo)題
    CharSequence message,           // 消息內(nèi)容
    boolean indeterminate,          // 不確定性位谋,false為不確定性樣式,true為確定性樣式
    boolean cancelable,             // 是否可以取消
    OnCancelListener cancelListener // 取消事件監(jiān)聽器
);

2. 取消ProgressDialog對話框
Dialog.cancel()Dialog.dismiss()都可以刪除對話框堰燎,但是使用cancel()方法會在刪除對話框時回調(diào)DialogInterface.OnCancelListener監(jiān)聽器中的onCancel()方法掏父,而dismiss()則不會進(jìn)行回調(diào)。

3. 設(shè)置ProgressDialog進(jìn)度條樣式

dialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);   // 設(shè)置水平進(jìn)度條
dialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);      // 設(shè)置圓形旋轉(zhuǎn)進(jìn)度條

ProgressDialog使用示例

1. 圓形旋轉(zhuǎn)進(jìn)度條

private void createIndeterminateProgressDialog() {
    final ProgressDialog dialog = ProgressDialog.show(this, null, "正在加載...");
    new Thread(new Runnable() {
        @Override
        public void run() {
            try {
                Thread.sleep(3000);
                dialog.dismiss();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }).start();
}

效果演示

progress_dialog_style_indeterminate.gif

2. 水平進(jìn)度條

private void createDeterminateProgressDialog() {
    final ProgressDialog dialog = new ProgressDialog(this);
    dialog.setIcon(R.drawable.ic_action_download);  // 設(shè)置圖標(biāo)
    dialog.setTitle("當(dāng)前下載進(jìn)度");          // 設(shè)置標(biāo)題
    dialog.setMessage("正在加載中...");      // 設(shè)置消息內(nèi)容
    dialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);  // 設(shè)置水平進(jìn)度條
    dialog.setMax(100);     // 設(shè)置最大進(jìn)度值
    dialog.setCancelable(true);                 // 設(shè)置是否可以通過點擊Back鍵取消
    dialog.setCanceledOnTouchOutside(false);    // 設(shè)置在點擊Dialog外是否取消Dialog進(jìn)度條
    dialog.setButton(DialogInterface.BUTTON_POSITIVE, "確定", new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            Toast.makeText(MainActivity.this, "確定", Toast.LENGTH_SHORT).show();
        }
    });
    dialog.setButton(DialogInterface.BUTTON_NEUTRAL, "忽略", new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            Toast.makeText(MainActivity.this, "忽略", Toast.LENGTH_SHORT).show();
        }
    });
    dialog.setButton(DialogInterface.BUTTON_NEGATIVE, "取消", new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            Toast.makeText(MainActivity.this, "取消", Toast.LENGTH_SHORT).show();
        }
    });
    // 按Back鍵事件監(jiān)聽
    dialog.setOnCancelListener(new DialogInterface.OnCancelListener() {
        @Override
        public void onCancel(DialogInterface dialog) {
            Toast.makeText(MainActivity.this, "Cancel", Toast.LENGTH_SHORT).show();
        }
    });
    dialog.show();

    new Thread(new Runnable() {
        @Override
        public void run() {
            int i = 0;
            while (i < 100) {
                try {
                    i += 5;
                    Thread.sleep(200);              // 5000ms
                    dialog.incrementProgressBy(5);  // 更新進(jìn)度
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
            try {
                Thread.sleep(200);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            dialog.dismiss();
        }
    }).start();
}

效果演示

progress_dialog_style_determinate.gif

源碼參考

Dialog

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末秆剪,一起剝皮案震驚了整個濱河市赊淑,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌仅讽,老刑警劉巖陶缺,帶你破解...
    沈念sama閱讀 206,311評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異洁灵,居然都是意外死亡饱岸,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評論 2 382
  • 文/潘曉璐 我一進(jìn)店門徽千,熙熙樓的掌柜王于貴愁眉苦臉地迎上來苫费,“玉大人,你說我怎么就攤上這事双抽“倏颍” “怎么了?”我有些...
    開封第一講書人閱讀 152,671評論 0 342
  • 文/不壞的土叔 我叫張陵牍汹,是天一觀的道長铐维。 經(jīng)常有香客問我柬泽,道長,這世上最難降的妖魔是什么嫁蛇? 我笑而不...
    開封第一講書人閱讀 55,252評論 1 279
  • 正文 為了忘掉前任锨并,我火速辦了婚禮,結(jié)果婚禮上睬棚,老公的妹妹穿的比我還像新娘琳疏。我一直安慰自己,他們只是感情好闸拿,可當(dāng)我...
    茶點故事閱讀 64,253評論 5 371
  • 文/花漫 我一把揭開白布空盼。 她就那樣靜靜地躺著,像睡著了一般新荤。 火紅的嫁衣襯著肌膚如雪揽趾。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,031評論 1 285
  • 那天苛骨,我揣著相機(jī)與錄音篱瞎,去河邊找鬼。 笑死痒芝,一個胖子當(dāng)著我的面吹牛俐筋,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播严衬,決...
    沈念sama閱讀 38,340評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼澄者,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了请琳?” 一聲冷哼從身側(cè)響起粱挡,我...
    開封第一講書人閱讀 36,973評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎俄精,沒想到半個月后询筏,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,466評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡竖慧,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,937評論 2 323
  • 正文 我和宋清朗相戀三年嫌套,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片圾旨。...
    茶點故事閱讀 38,039評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡踱讨,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出碳胳,到底是詐尸還是另有隱情勇蝙,我是刑警寧澤沫勿,帶...
    沈念sama閱讀 33,701評論 4 323
  • 正文 年R本政府宣布挨约,位于F島的核電站味混,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏诫惭。R本人自食惡果不足惜翁锡,卻給世界環(huán)境...
    茶點故事閱讀 39,254評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望夕土。 院中可真熱鬧馆衔,春花似錦、人聲如沸怨绣。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽篮撑。三九已至减细,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間赢笨,已是汗流浹背未蝌。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留茧妒,地道東北人萧吠。 一個月前我還...
    沈念sama閱讀 45,497評論 2 354
  • 正文 我出身青樓,卻偏偏與公主長得像桐筏,于是被迫代替她去往敵國和親纸型。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,786評論 2 345

推薦閱讀更多精彩內(nèi)容