I have a RadioGroup
and a button underneath it, but this button is invisible until a certain moment, how can I make RadioGroup
fill in the blank while the button is invisible?
I have a RadioGroup
and a button underneath it, but this button is invisible until a certain moment, how can I make RadioGroup
fill in the blank while the button is invisible?
Place this button with the following property in xml:
android:visibility="gone"
When this button has to be displayed, you should do it via code:
botao.setVisibility(Button.VSIBLE);