Android 簡單對話方塊

2021-09-22 22:19:09 字數 1542 閱讀 9230

效果:

呼叫**:

new alertdialog.builder(mainactivity.this)

.seticon(android.r.drawable.ic_dialog_alert)

.settitle("注意:請謹慎選擇!選錯手機會**!")

.setmessage("我是不是最好看的人?")

.setpositivebutton(r.string.confirm,new dialoginte***ce.onclicklistener()

}).setnegativebutton(r.string.cancel, new dialoginte***ce.onclicklistener()

}).create()

.show();

呼叫**:

//單選對話方塊

new alertdialog.builder(mainactivity.this)

.settitle("選擇性別")

.setcancelable(false)

.setsinglechoiceitems(new charsequence,0,new dialoginte***ce.onclicklistener()

}).setpositivebutton("確定", new dialoginte***ce.onclicklistener()

}).setnegativebutton("取消", new dialoginte***ce.onclicklistener()

}).create()

.show();

呼叫**:

string addr=new string;

new alertdialog.builder(mainactivity.this)

.settitle("寶貝兒,選個城市吃火鍋~")

.setmultichoiceitems(addr, null, new dialoginte***ce.onmultichoiceclicklistener()

}).setpositivebutton("確定",new onclicklistener()

}).setnegativebutton("取消", new onclicklistener()

}).create().show();

**:

//列表對話方塊

string addr=new string;

new alertdialog.builder(mainactivity.this)

.settitle("城市列表框")

.setitems(addr, new dialoginte***ce.onclicklistener()

}).create().show();

注意:一些名稱,比如按鈕名稱,title,等要寫成xml寫到strings.xml檔案中,以上僅是demo.

android對話方塊

圖1效果 該效果是當按返回按鈕時彈出乙個提示,來確保無誤操作,採用常見的對話方塊樣式。建立對話方塊方法dialog protected void dialog builder.setnegativebutton 取消 new onclicklistener builder.create show 在...

Android 對話方塊

alertdialog.builder builder newalertdialog.builder this builder.settitle 警告 標題 builder.setmessage 沒有人愛你 內容 設定確定按鈕 builder.setpositivebutton 確定 new dia...

android 輸入對話方塊

新增事項對話方塊 layoutinflater inflater layoutinflater.from propertysetactivity.this final view textentryview inflater.inflate r.layout.alert dialog text ent...