android custom alertdialog programmatically private void callAlert(String pw) { AlertDialog.Builder builder = new AlertDialog.Builder(getContext()); builder.setTitle("비밀번호 확인") .setMessage("입력한 비밀번호로 등록하시겠습니까?") .setPositiveButton("확인", (dialog, which) -> { Toast.makeText(getContext(), "등록이 완료되었습니다.", Toast.LENGTH_SHORT).show(); dialog.cancel(); dismiss(); }) .setNegativeButton("취소", (dialog, wh..