0
How to replace or clear dynamic radio button?
Please solve this isues
2 ответов
+ 1
Use the radio button objects setSelected() method and pass it false.
rb.setSelected(false);
Where rb is the identifier for the radio button object you wish to deselect.
+ 1
thanks 😊