您好,登錄后才能下訂單哦!
AlertDialog是Android中最常用的對話框之一,但不能直接通過AlertDialog的構造函數來產生一個AlertDialog。需通過AlertDialog.Builder創建,
AlertDialog.Builder alertDialog =new AlertDialog.Builder(this).create();
常用到的方法如下:
create ( ): 對話框創建
show ( ):對話框顯示
setTitle ( ):為對話框設置標題
setIcon( ):為對話框設置圖標
setMessage ( ):為對話框設置要顯示的內容
setView ( ): 為對話框設置樣式
setItems ( ):為對話框添加列表項
setSingleChoiceItems ( ):為對話框添加單選列表項
setMultiChoiceItems ( ):為對話框添加多選列表項
setNeutralButton ( ):為對話框添加中立按鈕
setPositiveButton ( ):為對話框添加確定按鈕
setNegativeButton ( ):為對話框添加取消按鈕
setCanceledOnTouchOutside (true):點擊對話框外部取消對話框顯示(默認為true)
setCancelable (true):按返回鍵取消對話框顯示(默認為true)
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。