Reputation: 4562
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
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