Refresh or change the AlertDialog Message
android, android-alertdialog
Solution
Yes ,you can.
For example, if you create your own dialog, with your own layout, you can set an id for each of the views, and then access each of them (for example the textView) and set its new text whenever you wish to.
Problem
I create an AlertDialog ``` AlertDialog.Builder builder = new AlertDialog.Builder(this); ... AlertDialog alert = builder.create(); alert.show(); ``` After a moment I want to change the AlertDialog message without closing it. Is it possible?