Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

LinearLayout vs RelativeLayout [closed]

What are the advantages of RelativeLayout over LinearLayout in android ? For a particular design which one would you prefer and what's the reason behind of that ??

Is it(RelativeLayout) comparable or similar like HTML <div> ??

like image 283
Soumyadip Das Avatar asked Jul 06 '12 05:07

Soumyadip Das


2 Answers

Read this article:

The Android UI toolkit offers several layout managers that are rather easy to use and, most of the time, you only need the basic features of these layout managers to implement a user interface. Sticking to the basic features is unfortunately not the most efficient way to create user interfaces. A common example is the abuse of LinearLayout, which leads to a proliferation of views in the view hierarchy. Every view, or worse every layout manager, you add to your application comes at a cost: initialization, layout and drawing become slower. The layout pass can be especially expensive when you nest several LinearLayout that use the weight parameter, which requires the child to be measured twice...

In a RelativeLayout, views are aligned either with their parent, the RelativeLayout itself, or other views. For instance, we declared that the description is aligned with the bottom of the RelativeLayout and that the title is positioned above the description and anchored to the parent's top. With the description GONE, RelativeLayout doesn't know where to position the title's bottom edge. To solve this problem, you can use a very special layout parameter called alignWithParentIfMissing.

This boolean parameter simply tells RelativeLayout to use its own edges as anchors when a constraint target is missing. For instance, if you position a view to the right of a GONE view and set alignWithParentIfMissing to true, RelativeLayout will instead anchor the view to its left edge. In our case, using alignWithParentIfMissing will cause RelativeLayout to align the title's bottom with its own bottom.

...the difference will be much more important when you use such a layout for every item in a ListView for instance...

like image 185
BlackHatSamurai Avatar answered Oct 03 '22 03:10

BlackHatSamurai


By the name you can come to know LinearLayout adds view linearly either vertical or horizontal by the orientation set by you. It will add views one after another which will depend on the requirement of the design. And RelativeLayout adds view related with each other,there is no need to declare orientation in RelativeLayout.

As for example you want to add two TextViews one under another so you will add first TextView and refer the second TextView with the first TextView by adding android:layout_below="first textview's id" in the XML file. This way you can deal with RelativeLayout.

like image 36
AkashG Avatar answered Oct 03 '22 02:10

AkashG