http://mainia.tistory.com/555
요기에 아주 훌륭하게 나와있음.
하지만, 지나치게 복잡함..그리고 실행하면 잘 안됨.. ㅡㅡ;
아래 초간단 AlertDialog. 이거 하나면 되겠소.
AlertDialog.Builder alert = new AlertDialog.Builder(Popup_VisitCustomerList.this);
alert.setMessage("고객이 등록되지 않았습니다. 먼저 고객을 등록해 주세요.");
alert.setPositiveButton("OK", new DialogInterface.OnClickListener()
{
public void onClick(DialogInterface dialog, int which)
{
dialog.dismiss();
}
}).show();
간결해서 멋집니다.
답글삭제