The code below is supposed to show a dialog box and then, depending on the state of the program, perform some animation (performed by the call to doseDownCourt()) when the dialog box is dismissed by clicking OK.
The problem is that the dialog box doesn't immediately go away when dismissed--it stays on the screen, with the OK button in a "pressed" state (shaded blue), while the animation is being executed and displayed. The dialog box stays on screen until the animation is complete.
I've tried to change the order in which commands are executed, and also tried to use threads to make the animation wait for the dialog box to go away before it begins, but haven't been able to get the behavior I want.
Any suggestions would be appreciated. Thanks.
AlertDialog.Builder builder = new AlertDialog.Builder(this.getContext());
String message;
Drawable puffle;
Drawable dr;
if (made == true) {
message = "You made it!!!";
dr = getResources().getDrawable(R.drawable.puff_happy);
}
else {
message = "Aw, you missed. Better luck after your next dose!";
dr = getResources().getDrawable(R.drawable.puff_confused);
}
builder.setMessage(message);
Bitmap bitmap = ((BitmapDrawable) dr).getBitmap();
puffle = new BitmapDrawable(Bitmap.createScaledBitmap(bitmap, 200, 200, true));
builder.setTitle(" ");
builder.setIcon(puffle);
builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
alertDialog.dismiss();
drawAll(); //put ball and shadow back with avatar
doseDownCourt(); //call doseDownCourt in case multiple doses have been taken before a shot for each has been attempted
}
});
alertDialog = builder.create();
alertDialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
WindowManager.LayoutParams WMLP = alertDialog.getWindow().getAttributes();
WMLP.y = -300; //y position of dialog box
alertDialog.getWindow().setAttributes(WMLP);
alertDialog.show();