Android Alert Dialog - how to hide the OK button after it being pressed
问题 I have been developing an Android app. I would like to hide the OK button after the user presses it, as the dialog window will stay at the foreground for some seconds while a computation takes place. This is the code: new AlertDialog.Builder(this) .setMessage("This may take a while") .setPositiveButton("OK", new android.content.DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { // hide the OK button - how? // a lot of computation } }) .show(