Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

of course and i know that JPanel doesn't exists in Android, but when i was developing with java Swing i made some panels in one frame and as user make his choice the equivalent panel is shown by setting visible the one and unsetting the other.Do you have any idea about how to do this in android?

ANSWERED:

What i was looking for was the FrameLayout that exists as attribute in layout xml file and also as class so at the java file i created an instance using FindViewById and then set visibility to INVISIBLE

share|improve this question

1 Answer

Each widgit (View) you want to hide should have a visibility property.

This can be set to:

Visible
Invisible
Gone

Depending on if you want it to take up space when it is invisible.

share|improve this answer
thank you for your answer i hoped to there is something more usefull – user842624 Mar 2 '12 at 19:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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