JibW
JibW

Reputation: 4562

Control Android TextView visibility run time programmatically

In my Java Android application, in run time according to a condition I need to setvisible false in a TextView. How to do it run time programmatically?

Upvotes: 9

Views: 19690

Answers (1)

Brandon O'Rourke
Brandon O'Rourke

Reputation: 24625

You're looking for the setVisibility method in View.

textView.setVisibility(View.GONE);
textView.setVisibility(View.INVISIBLE);

It doesn't take a boolean because you can set it to either Invisible or Gone. If it's Gone, it will not take up any "space" in the layout.

Upvotes: 41

Related Questions