2011-04-27 3 views
0

조건을 확인하고 싶습니다. 거짓이면 이전에 표시되었던 AlertDialog를 닫으려고합니다. 그러나, 나는이 오류에 직면하고 있습니다 :alertdialog.dismiss() 오류

방법은 (기각하는) 타입에 AlertDialog.Builder에 대한 정의되지

코드 :

ad.show(); 
     if (call.isInCall()== false) 
     { 
      ad.dismiss(); 
     } 

문제가 무엇입니까?

편집 : 문제 :

AlertDialog.Builder ad = new AlertDialog.Builder(context); 
     d = ad.create(); 
     ad.setTitle("Appel en cours..."); 
     ad.setMessage("Voulez vous répondre à cet appel?"); 
     //ad.create(); 
     ad.setPositiveButton("Oui", 
..... 

if(call.isInCall() == false && d != null && d.isShowing()){ 
      d.dismiss(); 
     } 

=> 강제 닫기. 도움을 주셔서 대단히 감사합니다.

답변

4

이와 같은 작업을 수행하기 전에 빌더를 사용하여 대화 상자를 만들어야합니다.

//Let's change this so you have a field declared in your class. 
AlertDialog d; 

//Somewhere, maybe in onCreate() you're using the builder to instantiate the dialog. 

//insert all builder creation and methods here first... then call 
d = ad.create(); 

//somewhere else in your code you've shown the dialog with 
d.show(); 

//again, some where else you're checking if the dialog is displaying and dismissing it 
if(call.isInCall() == false && d != null && d.isShowing()){ 
    d.dismiss(); 
} 

이 코드를 호출하는 위치에 따라 AlertDialog에서 범위를주의 깊게 살펴야합니다. 이것은 Dialogs를 처리하기위한 권장 방법이 아닙니다. onCreateDialog() onPrepareDialog() 활동 콜백의 사용을 연구해야합니다. http://developer.android.com/guide/topics/ui/dialogs.html

+0

AlertDialog d = ad.create(); AlertDialog (ad.show())를 표시 한 직후입니까? 나는 그것을 추가하고 오류가 지속됩니다. – androniennn

+0

@androniennn 아니, AlertDialog.Builder에서 show()를 호출하면 안됩니다. 나는 편집을 추가 할 것이다 ... – Maximus

+0

내가 한 것을 보아라. (첫 번째 게시물), 나는 힘이 가깝다. 도와 주셔서 감사합니다. – androniennn