Quantcast
Channel: Developer Feed - Snippet
Viewing all articles
Browse latest Browse all 178

How do you hide an ImageButton in Android?

$
0
0

In order to hide the button, call the setVisible method with either one of two arguments

imageButton.setVisible(View.INVISIBLE)

OR

imageButton.setVisible(View.GONE);

read more


Viewing all articles
Browse latest Browse all 178

Trending Articles