Home > other >  Is it necessary to put linear layouts in android development?
Is it necessary to put linear layouts in android development?

Time:12-18

So recently I have been learning android development and my question is that "what is the diffrence between using layouts(mostly linear) & not using them in an activity?"

CodePudding user response:

LinearLayout is a view group that aligns all children in a single direction, vertically or horizontally.

it totally depends on your design and your requirements which layout you use

You can use only Relative and Linear layout both together as well.

  • Related