quarta-feira, setembro 11, 2013

Esconder um botão no Android

HI,

Antes de conhecer essa dica eu apenas desabilitava o componente, Enable=false, mas agora o componente some da tela, fica invisível.

Achei aqui

How can I remove a button or make it invisible in Android?
http://stackoverflow.com/questions/4127725/how-can-i-remove-a-button-or-make-it-invisible-in-android/4127830#4127830


Set button visibility to GONE (button will be completely "removed" -- the buttons space will be available for another widgets) or INVISIBLE (button will became "transparent" -- its space will not be available for another widgets):
View b = findViewById(R.id.button);
b.setVisibility(View.GONE);
or in xml:


Se utilizar a opção INVISIBLE, o botão não some da tela, fica apenas transparente.

Não serve apenas para o botão.

Fiquem na Paz

Nenhum comentário: