//單選對話方塊
newalertdialog.builder
(this).
settitle
("請做出你的選擇").
seticon
(r.mipmap.ic_launcher)
.setpositivebutton
("確認"
,null)
.setnegativebutton
("取消"
,null)
.setsinglechoiceitems
(new
string
,0,new
dialoginte***ce.onclicklistener()
}).create()
.show()
;
//多選對話方塊
alertdialog dialog=
newalertdialog.builder
(this).
settitle
("你的興趣愛好有哪些").
seticon
(r.mipmap.ic_launcher)
.setmultichoiceitems
(new
string
,null,null)
.setpositivebutton
("確認"
,null)
.setnegativebutton
("取消"
,null)
.create()
; dialog.
show()
;
//進度條
progressdialog prg=
newprogressdialog
(this);
prg.
settitle
("進度顯示");
prg.
seticon
(r.mipmap.ic_launcher)
; prg.
setmessage
("正在複製,請稍後");
prg.
setprogressstyle
(progressdialog.style_horizontal)
; prg.
show()
;
//即時對話方塊
toast.
maketext
(this
,"您做的是多項選擇"
,toast.length_long)
.show()
;
new
alertdialog.builder
(this).
settitle
("提示").
seticon
(r.mipmap.ic_launcher)
.setmessage
("確認退出嗎?").
setpositivebutton
("確認"
,null)
.setnegativebutton
("取消"
,null)
.create()
.show()
;
alertdialog dialog=
newalertdialog.builder
(this).
settitle
("提示").
seticon
(r.mipmap.ic_launcher)
.setmessage
("確認退出嗎?").
setpositivebutton
("確認"
,null)
.setnegativebutton
("取消"
,null)
.create()
; dialog.
show()
;
<?xml version="1.0" encoding="utf-8"?>
xmlns:android
=""=""
xmlns:tools
=""android:layout_width
="match_parent"
android:layout_height
="match_parent"
android:orientation
="vertical"
tools:context
=".mainactivity"
>
android:id
="@+id/textview"
android:layout_width
="wrap_content"
android:layout_height
="wrap_content"
android:text
="下列遊戲,您比較喜歡:"
/>
android:id
="@+id/edittext"
android:layout_width
="match_parent"
android:layout_height
="wrap_content"
android:ems
="10"
android:inputtype
="textpersonname"
android:text
="您選擇的是:"
/>
android:id
="@+id/checkbox"
android:layout_width
="wrap_content"
android:layout_height
="wrap_content"
android:checked
="true"
android:text
="王者榮耀"
/>
android:id
="@+id/checkbox2"
android:layout_width
="wrap_content"
android:layout_height
="wrap_content"
android:checked
="true"
android:text
="和平精英"
/>
android:id
="@+id/checkbox3"
android:layout_width
="wrap_content"
android:layout_height
="wrap_content"
android:checked
="true"
android:text
="英雄聯盟"
/>
android:id
="@+id/edittext2"
android:layout_width
="match_parent"
android:layout_height
="wrap_content"
android:ems
="10"
android:inputtype
="textpersonname"
/>
android:id
="@+id/button"
android:layout_width
="match_parent"
android:layout_height
="wrap_content"
android:text
="預設的"
/>
linearlayout
>
Android控制項 對話方塊
android控制項 對話方塊 分為 關鍵字 alertdialog.builder builder.show 標題欄 資訊欄 注意點 1.記得show 出來 2.alertdialog.builder 採用自定義的子布局 alertdialog.builder builder new alertd...
對話方塊控制項 1
針對frame窗體,通常在方法oncreate中做相應的初始化建立操作,函式原型 int cmainframe oncreate lpcreatestruct lpcreatestruct 建立操作 在dialog對話方塊窗體中,通常在oninitdialog中,進行相應的初始化操作,原型為 boo...
對話方塊 訊息對話方塊
我們在使用windows系統的過程中經常會見到訊息對話方塊,提示我們有異常發生或提出詢問等。因為在軟體開發中經常用到訊息對話方塊,所以mfc提供了兩個函式可以直接生成指定風格的訊息對話方塊,而不需要我們在每次使用的時候都要去建立對話方塊資源和生成對話方塊類等。這兩個函式就是cwnd類的成員函式mes...