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?
feedback
|
|
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. | |||
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. | |||
feedback
|