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.

link|improve this question

feedback

9 Answers

up vote 27 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".

link|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
feedback

3 things to remember:

  • set the android:layout_width of the children to "0dp"
  • set the android:weightSum of the parent
  • set the android:layout_weight of each child proportionally (e.g. weightSum = "5", three children: layout_weight="1", layout_weight="3", layout_weight="1")
link|improve this answer
12  
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
9  
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
2  
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
feedback
<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>
link|improve this answer
feedback

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>
link|improve this answer
So is it "weight" or "layout_weight"?? – Igor G. Apr 5 at 20:38
feedback

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

link|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
feedback

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.

link|improve this answer
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
feedback

Substitute wrap_content by fill_parent.

link|improve this answer
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.