1 소스를 원하는 위치에 삽입한다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 new AlertDialog.Builder(this) .setTitle("알림창") .setMessage("알림창 테스트입니다") .setNegativeButton("Button1", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { Toast.makeText(getApplication(), "1", Toast.LENGTH_SHORT).show(); } }) .setNeutralButton("Button2", new DialogInterfac..