Reputation: 9140
If i set a views visibility which as been inflated, to gone, will it Speed up my UI?
Upvotes: 14
Views: 11025
Reputation: 9
GONE = This view is invisible, and it doesn't take any space for layout purposes.
Upvotes: 1
Reputation: 32730
It will speed up the actual drawing of the UI, because, well, you don't have to draw it anymore, but it will still be inflated and the inflation process will not be faster.
Upvotes: 22