I created the AlertDialog using the builder...It can shows when we call the show() method... i have the cancel button in that dialog...i can cancel that dialog by click the cancel button..My problem is once i canceled the displaying dialog...i can't show the dialog at next time...it throws some exception like the following

    09-09 12:25:06.441: ERROR/AndroidRuntime(2244): java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
09-09 12:25:06.441: ERROR/AndroidRuntime(2244):     at android.view.ViewGroup.addViewInner(ViewGroup.java:1970)
09-09 12:25:06.441: ERROR/AndroidRuntime(2244):     at android.view.ViewGroup.addView(ViewGroup.java:1865)
09-09 12:25:06.441: ERROR/AndroidRuntime(2244):     at android.view.ViewGroup.addView(ViewGroup.java:1845)
09-09 12:25:06.441: ERROR/AndroidRuntime(2244):     at com.android.internal.app.AlertController.setupView(AlertController.java:364)
09-09 12:25:06.441: ERROR/AndroidRuntime(2244):     at com.android.internal.app.AlertController.installContent(AlertController.java:205)
09-09 12:25:06.441: ERROR/AndroidRuntime(2244):     at android.app.AlertDialog.onCreate(AlertDialog.java:251)
link|improve this question

38% accept rate
Show the code, where you invoke the AlertDialog. – LordTwaroog Sep 9 '10 at 7:11
feedback

2 Answers

Don't show the same dialog, create a new one.

link|improve this answer
feedback

remove the previous dialog before adding new one. If you continue adding new dialog each time this will stay in your memory and your app will consume more battery.

call remove view or removeAllViews() on layout in which you are adding your dialog.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.