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.

i have created a custom menu using linear layout for an android application. The scenario here is that i have created five menu tabs. I have to set the visibility of a menu or two to gone based on the navigation i will do. the problem is when i set the visibility of a menu tab to gone, the stretching of layout is shown explicitly. Please guide to get out of the problem

share|improve this question

1 Answer

You could use the visibility "Invisible" instead. GONE: The view is totally removed from your layout. INVISIBLE: The view isn't shown but it still uses the space it needs.

share|improve this answer
i think u did not get my question. I need the other views to use up the space when gone is set to a particular view. – Sarath May 25 '12 at 11:02
So you may use "weight" attribute: if you set android:layout_weight="1" for each menu item, the whole space will be divided equally for each child. Is that what you need? – Jeje Doudou May 25 '12 at 11:06
i have used the weight attribute. But the stretching of layout is seen explicitly in the app. Is there any way to avoid it.? – Sarath May 25 '12 at 11:08
I think you're right, I don't get your problem. What's the current behavior and what behavior do you want instead? – Jeje Doudou May 25 '12 at 11:22
I will put it clear. I have designed a layout with five views. I have to hide a layout based on the screen which i am navigating. Whenever i try to hide the views in the center , the other views stretch to use up the space present there. The stretching of layout is being shown which is not good to look at it. could you suggest me some options where the stretching of layout is not seen explicitly. – Sarath May 25 '12 at 11:29

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.