How can I remove a button or make it invisible in Android?

Troj picture Troj · Nov 8, 2010 · Viewed 286.1k times · Source

How can I remove a button in Android, or make it invisible?

Answer

Konstantin Burov picture Konstantin Burov · Nov 8, 2010

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:

<Button ... android:visibility="gone"/>