I\'d like to have an AlertDialog builder that only has one button that says OK or Done or something, instead of the default yes and no. Can that be done with the standard Al
This is the closer I could get to the one liner this should be if the Android API was any smart:
new AlertDialog.Builder(this) .setMessage(msg) .setPositiveButton("OK", null) .show();