Search code examples
androidandroid-xmlxml-attribute

Android : Difference between View.GONE and View.INVISIBLE?


What is the difference between View.INVISIBLE and View.GONE for the View visibility status?


Solution

  • INVISIBLE:

    This view is invisible, but it still takes up space for layout purposes.

    GONE:

    This view is invisible, and it doesn't take any space for layout purposes.