Usage of AlertDialog [ AlertDialog.Builder(Activity) ]

=============================================

Download project link: http://ishare.iask.sina.com.cn/f/33385525.html

Included Files are :
AlertDialog.apk
AlertDialog.zip(source code)
result.png
result_button.png
result_message.png
result_title.png

=============================================

To trigger a dialog ,we add a listener on a button and show it in its OnClick method.

①show title in dialog.

We just need to use the method of the AlertDialog.Builder : “.setTitle”

clip_image001

show Message in dialog.

We just need to call the method of the AlertDialog.Buider: “.setMessage”

clip_image002

show a Button in dialog

We need to call the method of the AlertDialog.Builder:”.setPostivieButton”.

Note that there are two parameters in this method: text and listener.

clip_image004

clip_image005

clip_image007

clip_image009clip_image011clip_image013

clip_image015

原文地址:https://www.cnblogs.com/xilifeng/p/2623607.html