Why LinearLayout's margin is being ignored if used as ListView row view
Asked Answered
D

3

35

I was wondering, if I merely provide a single layer of LinearLayout as ListView's row view, its margin will be ignored.

Margin will be ignored if used of ListView's row view

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginLeft="5dp"

However, if I provide double layer of LinearLayout, with first layer acted as "dummy" layer, its margin will not be ignored.

We will have margin in ListView's row view

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/buyPortfolioLinearLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout 
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginLeft="5dp"

May I know why it happen so?

Drastic answered 29/4, 2013 at 12:1 Comment(2)
My observation is that all attributes with the layout prefix refer to this UI element's relationship with its parent and can be sort of overridden by the parent, whereas attributes without layout refer to this UI element's relationship with its children. Have you tried "padding" instead of "layout_margin"?Hasin
Same. Either using margin or padding at the outer most of LinearLayout will be ignored too.Drastic
T
67

The fact is that, the margin of LinearLayout (child) asks its parent layout (container) to give child layout a margin of x value.

So if the parent layouts' LayoutParams support the margins then that margin is honored and applied.

ListView uses AbsListView.LayoutParams by default, which doesn't include any margin support, just the height and width, thats why, it simply ignores the params value for margins.

Whereas other layout params like ActionBar.LayoutParams, FrameLayout.LayoutParams, GridLayout.LayoutParams, LinearLayout.LayoutParams and RelativeLayout.LayoutParams are child of ViewGroup.MarginLayoutParams, which honors the child's margin values.

Tripitaka answered 29/4, 2013 at 12:34 Comment(6)
Sorry to bump this. I have a linear layout with textViews and I set the weight property there. When I use that layout as my listRow view (programatically), the weight property is ignored and my textViews are pushed next to one another.Toadeater
@Toadeater you should open a new question and provide detail and code there as this seems to be a different query.Tripitaka
Here: #25159994Toadeater
Is there a way to override this behavior in LinearLayout such that changing the width (say) of a view dynamically would ignore the margins and change its width?Sherikasherill
@Divins I'm afraid no, you would've to manually set the width and margins.Tripitaka
ListView understands android:padding, so if possible (depends on your layout structure and your's goals) you can use android:padding property. Nowadays the ideal it's use the RecyclerViewAffectation
T
1

when you use a sigle layout this means this is your window if you apply margin on it then you'll asking for the margin of that amount from your parent view but we don't have parent view so margin won't work. on second place there is parent view and margin will help for internal view but not for external.

Treenatreenail answered 29/4, 2013 at 12:42 Comment(0)
H
-1

Instead of adding a nested layout, you could use padding like so:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingLeft="5dp"
Hectograph answered 11/8, 2014 at 18:17 Comment(1)
That won't work because the question states that having a single layout doesn't apply the padding but nesting does. I've just ran into the same problem.Aubrette

© 2022 - 2024 — McMap. All rights reserved.