For a View
that is sometimes visible and sometimes not, depending on the user's actions, (staying in the same activity) what is prefereable?
myView.setVisibility(View.INVISIBLE); // or
myView.setVisibility(View.GONE);
No other element depends on myView
's size or dimensions, so the graphical result is the same.
As INVISIBLE doesn't change the view's dimensions, I guess it's more preferable than GONE because with GONE we possibly have to measure and redraw other views unnecessarily. And then re-measure and re-draw them when myView
is made VISIBLE again.
You're on the right track thinking about the impact on measuring. Which one is more efficient all depends on how frequently you are changing the view's visibility.
For example, if the view is not visible for a majority of the time, making it GONE
would probably be more efficient, because the system would not be needlessly measuring and laying out your invisible view whenever it needs to adjust other views on the screen.
On the other hand, if the view changes between visible and invisible frequently, you might get better performance from INVISIBLE
as you would potentially avoid an extra measure/layout on each transition.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With