I would like to make a LinearLayout that was created from xml invisible, and another LinearLayout visible to replace it. The replacement layout starts out as invisible. When I make the originally visible layout invisible, it still leaves space for it on the screen. How can I refresh the screen so that space is gone?

link|improve this question

70% accept rate
feedback

3 Answers

up vote 4 down vote accepted

Perhaps you are mixing up View.INVISIBLE with View.GONE:

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

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

link|improve this answer
I didn't know GONE existed. Thanks, I'm still brand new to Android – JonF Jun 8 '10 at 19:25
feedback

I have done this before and its actually very simple. Make 2 different layout xml files, one for each layout you want to show. When you want to switch from one to the other, all you have to do is call setContentView(R.layout.some_layout) and you're done!

pretty easy eh?

link|improve this answer
feedback

@mtmurdock And when you need to manage a button inside it? @Jonf Could you did this? When i Tryed to do this, in my app, it simply doesn't do anything. I think the layout gone away but the components remain there.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.