2017-09-03 11 views
-2

토스트를 표시하기 위해 포지티브 버튼을 클릭 할 때 경고 대화 상자가 필요하지만 대신 에로 터가 표시됩니다!경고 대화 상자에서 토스트 만들기 긍정 버튼

코드

AlertDialog.Builder builder = new AlertDialog.Builder(this) 
      .setIcon(android.R.drawable.ic_dialog_alert) 
      .setTitle("Create new ?") 
      .setMessage(" Do you want to create new msg ?!") 
      .setPositiveButton("Yes ? ", new DialogInterface.OnClickListener() { 
       @Override 
       public void onClick(DialogInterface dialog, int which) { 
        Toast.makeText(this," Ready to Create New Msg",Toast.LENGTH_LONG).show(); 

       } 
      }); 

오류 MSG

Error:(38, 30) error: no suitable method found for makeText(<anonymous 
OnClickListener>,String,int) 
method Toast.makeText(Context,CharSequence,int) is not applicable 
(argument mismatch; <anonymous OnClickListener> cannot be converted to 
Context) 
method Toast.makeText(Context,int,int) is not applicable 
(argument mismatch; <anonymous OnClickListener> cannot be converted to 
Context) 

답변

2

사용 YourActivity.this 또는 대신 this 당신은 제대로 컨텍스트를 사용해야합니다 makeText

0

의 첫 번째 매개 변수의 getApplicationContext(). Toast를 만들 때는 dialog.getContext() 또는 NameOfYourActivity.this를 사용하십시오.