2017-05-12 7 views
-1

AlertDialog 빌더를 사용하여 다음과 같은 작은 유효성 검사를 작성한 사용자로부터 입력을받습니다. EditText가 비어 있으면 SnackBar를 표시하고 닫지 마십시오. 대화.EditText가 비어있는 경우 경고 대화 상자를 닫지 마십시오. - Android AlertDialog.Builder

사용자가 EditText를 비워두고 Positive 버튼을 누르면 Snackbar에서 메시지를 받고 대화 상자를 닫습니다.

View view = getLayoutInflater().inflate(R.layout.layout_dialog, null); 

acceptUserInput = (EditText) mView.findViewById(R.id.acceptUserInput); 

    final AlertDialog alertDialog = new AlertDialog.Builder(context) 
      .setView(view) 
      .setCancelable(false) 
      .setPositiveButton("SAVE", null) 
      .setNegativeButton("CLOSE", null) 
      .create(); 

alertDialog.setOnShowListener(new DialogInterface.OnShowListener() { 
     @Override 
     public void onShow(DialogInterface dialog) { 

      Button buttonPositive = ((AlertDialog) dialog).getButton(DialogInterface.BUTTON_POSITIVE); 
      buttonPositive.setOnClickListener(new View.OnClickListener() { 

       @Override 
       public void onClick(View view) { 
       String strUserInput = acceptUserInput.getText().toString().trim(); 
         if(TextUtils.isEmpty(strUserInput)) { 

          Snackbar snackbar = Snackbar.make(mView, "Name field cannot be left blank", Snackbar.LENGTH_LONG); 
          snackbar.show(); 
          return; 
         } 
      }); 

      Button buttonNegative = ((AlertDialog) dialog).getButton(DialogInterface.BUTTON_NEGATIVE); 
      buttonNegative.setOnClickListener(new View.OnClickListener() { 

       @Override 
       public void onClick(View view) { 
        alertDialog.dismiss(); 
       } 
      }); 
     } 
    }); 
+0

r emove return; 긍정 버튼 –

+2

에서 시도하십시오. 사용 : onShow() method.http : //stackoverflow.com/a/7636468/3960700 – Steve

+0

@Sophie 업로드 된 내 답변을보십시오. 그것은 완벽하게 작동합니다. –

답변

0

당신은 onShowListener 설정할 수 있습니다 조건이 실패 할 경우 그래서

는 어떻게 여기 코드는,에 AlertDialog의 폐쇄에 제어 할 수 있습니다 질문에 대한 답변은 다음과 같습니다. -

public void inputDialog() { 

    LayoutInflater layoutInflaterAndroid = LayoutInflater.from(context); 
    final View mView = layoutInflaterAndroid.inflate(R.layout.layout_dialog, null); 
    final AlertDialog.Builder alertDialogBuilderUserInput = new AlertDialog.Builder(context); 

    final EditText acceptUserInput = (EditText) mView.findViewById(R.id.acceptUserInput); 

    alertDialogBuilderUserInput.setView(mView); 

    alertDialogBuilderUserInput 
      .setCancelable(false) 
      .setPositiveButton("SAVE", null) 
      .setNegativeButton("CLOSE",null); 

    final AlertDialog alertDialogAndroid = alertDialogBuilderUserInput.create(); 
    alertDialogAndroid.show(); 
    alertDialogAndroid.getButton(AlertDialog.BUTTON_POSITIVE).setOnClickListener(new View.OnClickListener() 
    { 
     @Override 
     public void onClick(View v) 
     { 
      String strUserInput = acceptUserInput.getText().toString().trim(); 
      if(TextUtils.isEmpty(strUserInput)) { 

       Snackbar snackbar = Snackbar.make(mView, "Name field cannot be left blank", Snackbar.LENGTH_LONG); 
       snackbar.show(); 
      } 
     } 
    }); 
    alertDialogAndroid.getButton(AlertDialog.BUTTON_NEGATIVE).setOnClickListener(new OnClickListener() { 
     @Override 
     public void onClick(View v) { 
      alertDialogAndroid.cancel(); 
     } 
    }); 
} 
0
AlertDialog.Builder mDialog = new AlertDialog.Builder(
      MapActivity.this);  

AlertDialog mAlertDialog = mDialog.create(); 
      mAlertDialog.setOnShowListener(new DialogInterface.OnShowListener() { 

       @Override 
       public void onShow(DialogInterface dialog) { 

        Button b = mAlertDialog.getButton(AlertDialog.BUTTON_POSITIVE); 
        b.setOnClickListener(new View.OnClickListener() { 

         @Override 
         public void onClick(View view) { 
          // TODO Do something 

          mEdt.setText("message"); 
         } 
        }); 
       } 
      }); 
      mAlertDialog.show(); 
0

전문 솔루션으로 다음과 같이

public void inputDialog() { 

     LayoutInflater layoutInflaterAndroid = LayoutInflater.from(context); 
     final View mView = layoutInflaterAndroid.inflate(R.layout.layout_dialog, null); 
     final AlertDialog.Builder alertDialogBuilderUserInput = new AlertDialog.Builder(context); 

     acceptUserInput = (EditText) mView.findViewById(R.id.acceptUserInput); 

     alertDialogBuilderUserInput.setView(mView); 

     alertDialogBuilderUserInput 
       .setCancelable(false) 
       .setPositiveButton("SAVE", new DialogInterface.OnClickListener() { 
        public void onClick(DialogInterface dialogBox, int id) { 
         // ToDo get user input here 

         String strUserInput = acceptUserInput.getText().toString().trim(); 
         if(TextUtils.isEmpty(strUserInput)) { 

          Snackbar snackbar = Snackbar.make(mView, "Name field cannot be left blank", Snackbar.LENGTH_LONG); 
          snackbar.show(); 

          return; 

         } 
        } 
       }) 

       .setNegativeButton("CLOSE", 
         new DialogInterface.OnClickListener() { 
          public void onClick(DialogInterface dialogBox, int id) { 
           dialogBox.cancel(); 
          } 
         }); 

     AlertDialog alertDialogAndroid = alertDialogBuilderUserInput.create(); 
     alertDialogAndroid.show(); 

     }