0
I have a RadioGroup
and a button underneath it, but this button is invisible until a certain moment, I can do the RadioGroup
occupy the white space while the button is invisible ?
0
I have a RadioGroup
and a button underneath it, but this button is invisible until a certain moment, I can do the RadioGroup
occupy the white space while the button is invisible ?
2
Place this button with the following property in xml:
android:visibility="gone"
When this button has to be displayed, you must do it via code:
botao.setVisibility(Button.VSIBLE);
Browser other questions tagged android
You are not signed in. Login or sign up in order to post.