I have an activity that has buttons and images that can appear and disappear depending on user interactions.
What I am finding is that objects at the back, which hav
Try object.setVisibility(View.GONE)
object.setVisibility(View.GONE)
View.GONE prevents view to draw its layout bounds (width and height) whereas View.INVISIBLE draws it.
View.GONE
View.INVISIBLE