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
Kotlin?
val dialogBuilder = AlertDialog.Builder(this.context) dialogBuilder.setTitle("Alert") .setMessage(message) .setPositiveButton("OK", null) .create() .show()