Question

I've been trying to create a color LinearLayout object (1) within another LinearLayout object (2), while having (1) not display beyond the bounds of (2) - in short, I wish to assign the equivalent of the CSS overflow:hidden property to LinearLayout (2) so that LinearLayout (1) doesn't bleed beyond the edges of (2).

<LinearLayout>
   <!-- (2) -->
   <LinearLayout>
      <!-- (1) -->
   </LinearLayout>
</LinearLayout>

Is this possible within Android?

Thank you for the help!

Was it helpful?

Solution

LinearLayout is a box layout - I can actually see how your internal (nested) LinearLayout can protrude outside of the parent. Can you perhaps give a more complete code example?

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top