I am looking for a Dialog class where the message that is set to an instance of the class (e.g., via setMessage) can be changed depending on the situation. Is this possible? Or are messages that are set permanent (thereby requiring a new instance of the Dialog)?
Share
I guess you mean
AlertDialog, because as @Sam says,Dialoghas nosetMessage()method. Of course, you can use the sameAlertDialoginstance. JustsetMessage()and show. Just keep in mind you will lose previous message.