드로이드에서 알림창 AlertDialog를 띄우는 방법에 대해 포스팅합니다.

Summary


 Public Constructors

 

 AlertDialog.Builder(Context context)

Constructor using a context for this builder and the AlertDialog it creates.

 

 AlertDialog.Builder(Context context, int theme)

Constructor using a context and theme for this builder and the AlertDialog it creates.

스타일을 지정하여 생성할 수 있습니다.

다이얼로그 만들기

AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("Dialog")
        .setMessage("This is Dialog")
        .setCancelable(true)
        .setPositiveButton("OK", new DialogInterface.OnClickListener() {
            // 확인 버튼 클릭시 설정
            public void onClick(DialogInterface dialog, int whichButton) {
                dialog.dismiss();
            }
        })
        .setNegativeButton("Cancle", new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog, int whichButton) {
                dialog.cancel();
            }
        });
builder.create();
builder.show();



참고 사이트 : developer.android.com


궁금한 사항이나 수정은 댓글로 남겨주세요~

+ Recent posts