Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I always read about this funny weight value in the Android documentations. Now I want to try it for the first time but it isn't working at all.

As I understand it from the documentations this layout:

  <LinearLayout
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:orientation="horizontal">

     <Button
        android:text="Register"
        android:id="@+id/register"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:padding="10dip"
        weight="1" />

     <Button
        android:text="Not this time"
        android:id="@+id/cancel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:padding="10dip"
        weight="1" />

  </LinearLayout>

should create two buttons that are horizontally aligned and share the space equally. The problem is the two buttons don't grow to fill the space. The result is something like this:

alt text

I would like the buttons to grow and fill the whole line. If both buttons are set to fill parent only the first button is shown and fills the whole line.

share|improve this question
1  
You might find an answer here: ugiagonzalez.com/2012/01/19/… – user1158839 Jan 19 '12 at 15:29

10 Answers

up vote 50 down vote accepted

I think I found the problem. You are not setting the layout_weight property. Your code reads weight="1" and it should read android:layout_weight="1".

share|improve this answer
1  
Your are right it seems that does the trick. The are not the same size though the not this time button is bigger I think becaue it has the longer text in it. – Janusz Apr 24 '10 at 10:17

3 things to remember:

  • set the android:layout_width of the children to "0dp"
  • set the android:weightSum of the parent (edit: as Jason Moore noticed, this attribute is optional, because by default it is set to the children's layout_weight sum)
  • set the android:layout_weight of each child proportionally (e.g. weightSum="5", three children: layout_weight="1", layout_weight="3", layout_weight="1")

Example:

    <LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:weightSum="5">

    <Button
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="1" />

    <Button
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="3"
        android:text="2" />

    <Button
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="3" />

    </LinearLayout>

And the result:

Layout weight example

share|improve this answer
16  
Thanks for the tip about setting width to zero. I also found that setting weightSum on the parent wasn't needed. – Jason Moore Feb 26 '11 at 21:43
12  
Good to know, thanks. If so, setting the weightSum can be still useful when you don't want the children to fill 100% of the parent. – Anke Feb 28 '11 at 8:26
3  
This is correct for static XML layouts. If you're adding Views dynamically at runtime, you'll need to use addView with layout parameters like addView(button, new LinearLayout.LayoutParams(0, height, 1)); This is true even if you're inflating layouts with the correct width and weight values. – Nuthatch Sep 3 '11 at 21:41
You say set the android:weightSum of the parent - set it to some value or just put it in, how should that be set? – theJerm Oct 18 '12 at 4:20
theJerm, yes, weightSum should be a value. This value represents 100% of layout's width. So if e.g. weightSum="1" and child's layout_weight="0.3", then the child will take 30% of its parent's width. If weightSum="250" and child's layout_weight="200", then the child will take 80% (because: 200/250 * 100% = 80%), etc... weightSum must be > 0 and the sum of children's layout_weight must be <= weightSum. – Anke Oct 18 '12 at 14:20
show 3 more comments

It's android:layout_weight. Weight can only be used in LinearLayout. If the orientation of linearlayout is Vertical, then use android:layout_height="odp" and if the orientation is horizontal, then use android:layout_width = "odp". It'll work perfectly.

share|improve this answer
<LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/logonFormButtons"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:baselineAligned="true"       
        android:orientation="horizontal">

        <Button
            android:id="@+id/logonFormBTLogon"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"            
            android:text="@string/logon"
            android:layout_weight="0.5" />

        <Button
            android:id="@+id/logonFormBTCancel"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"            
            android:text="@string/cancel"
            android:layout_weight="0.5" />
    </LinearLayout>
share|improve this answer
Now I'd rather suggest using layout_weight="50" and layout_width="0px" – Yar Jun 7 '12 at 12:19

Try setting the layout_width of both buttons to "0dip" and the weight of both buttons to 0.5

share|improve this answer
Now both buttons are vanished from screen – Janusz Apr 23 '10 at 14:22
okay, then set the layout width on both to fill_parent and weights to 0.5 – jqpubliq Apr 23 '10 at 14:36
again only shows the first button – Janusz Apr 23 '10 at 14:47
take a look at this and this. I'm A little confused as to why this still isn't working but maybe this will give you som ideas. – jqpubliq Apr 23 '10 at 14:59

In the above XML, set the android:layout_weight of the linear layout as 2: android:layout_weight="2"

share|improve this answer
1  
Why is that needed? Why is the layout weight of 2 important? Why not 20 or 200? – Conrad Frix Dec 14 '12 at 17:40

Substitute wrap_content by fill_parent.

share|improve this answer

Perhaps setting both of the buttons layout_width properties to "fill_parent" will do the trick.

I just tested this code and it works in the emulator:

<LinearLayout android:layout_width="fill_parent"
          android:layout_height="wrap_content">

    <Button android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="hello world"/>

    <Button android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="goodbye world"/>

</LinearLayout>

Be sure to set layout_width to "fill_parent" on both buttons.

share|improve this answer
1  
this only pushes the right button out of the screen and shows only the first button. – Janusz Apr 23 '10 at 14:19
The latest code I see here works fine. – Artem Russakovskii Nov 10 '10 at 23:37

This is perfect answer of your problem

  <LinearLayout 
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content"
        android:orientation="horizontal"  >   
     <Button 
        android:text="Register" android:id="@+id/register"
        android:layout_width="wrap_content" android:layout_height="wrap_content"
        android:padding="10dip" weight="1" />
     <Button 
        android:text="Not this time" android:id="@+id/cancel"
        android:layout_width="wrap_content" android:layout_height="wrap_content"
        android:padding="10dip" weight="1" />
  </LinearLayout>
share|improve this answer
1  
So is it "weight" or "layout_weight"?? – Igor Ganapolsky Apr 5 '12 at 20:38

Plus you need to add this android:layout_width="0dp"

share|improve this answer

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.