AlertDialog是Android中最經常使用的對話框之一,但不能直接經過AlertDialog的構造函數來產生一個AlertDialog。需經過AlertDialog.Builder建立,ide
AlertDialog.Builder alertDialog =new AlertDialog.Builder(this).create();
函數
經常使用到的方法以下:ui
create ( ): 對話框建立this
show ( ):對話框顯示spa
setTitle ( ):爲對話框設置標題
setIcon( ):爲對話框設置圖標
setMessage ( ):爲對話框設置要顯示的內容it
setView ( ): 爲對話框設置樣式
setItems ( ):爲對話框添加列表項class
setSingleChoiceItems ( ):爲對話框添加單選列表項構造函數
setMultiChoiceItems ( ):爲對話框添加多選列表項方法
setNeutralButton ( ):爲對話框添加中立按鈕樣式
setPositiveButton ( ):爲對話框添加肯定按鈕
setNegativeButton ( ):爲對話框添加取消按鈕
setCanceledOnTouchOutside (true):點擊對話框外部取消對話框顯示(默認爲true)
setCancelable (true):按返回鍵取消對話框顯示(默認爲true)