Hi I have a question on AlertDialog / Toast . When a user clicks on a button , just a message showing "You are right " should be displayed for 1 seconds. When I implement this using toast/alertdialog it executes this but starts the next instruction in the onclick method before the dailog is turned off. How do I fix this?

link|improve this question

This is an awesome question as I have noticed this myself. You would think Android would "wait" for the response, but instead your program continues to execute even though it's waiting on a response. – Jack Aug 29 '11 at 21:37
sleep the thread for a sometime while the dialog dismisses. – Nikola Despotoski Aug 29 '11 at 21:45
1  
Sleeping the UI thread would cause it to not respond when the user clicks – Jack Aug 29 '11 at 21:46
feedback

2 Answers

up vote 0 down vote accepted

In case you are using a toast, postpone a task for the time the toast is being displayed using Handler.

When using a dialog, implement an onClickListener for the "Okey" button.

link|improve this answer
There wouldn't be any problem for dialog because it will pause until the user clicks..but for toast to display just a message , it doesn't wait on anything and hence continues executing the next instruction which is undesirable..pausing using a thread causes it be unresponsive after the dialog.. how is different using a handler,,could you explain with a code snippet ? – Nikhil Aug 30 '11 at 3:53
feedback

What I have had to do, is put any code that comes after the AlertDialog, in the corresponding listener. For example if you have a bunch of code after an alert dialog, that you only want to execute based on some response, move that code into another method. Then, in either your positiveButton listener (or negative button listener), add the call to the corresponding method you just created. Or you could just cram it all in the listener, but that makes the code less manageable.

link|improve this answer
no there is no respnse..the dialog should appear and go before the other statements are executed which is not listening to any respnse – Nikhil Aug 30 '11 at 18:02
feedback

Your Answer

 
or
required, but never shown

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