I have seen many posts about this and have tried many of the solutions but for some reason nothing is working. I just want the buttons to share equal space... Can you please look at my xml code and see if something is wrong? Thanks!


    
        
        
        
        

<ScrollView android:id="@+id/scrollview1" android:layout_width="fill_parent" android:layout_height="fill_parent"> <LinearLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content" android:weightSum="120"> <Button android:id="@+id/btn_mission" android:layout_width="0dp" android:layout_height="wrap_content" android:background="#8D8BB7" android:layout_weight="20" android:text="Mission"> </Button> <Button android:id="@+id/btn_news" android:layout_width="0dp" android:layout_height="wrap_content" android:background="#8D8BB7" android:layout_weight="20" android:text="News/Events"> </Button> <Button android:id="@+id/btn_studentservices" android:layout_width="0dp" android:layout_height="wrap_content" android:background="#8D8BB7" android:layout_weight="20" android:text="Student Services"> </Button> <Button android:id="@+id/btn_facultyservices" android:layout_width="0dp" android:layout_height="wrap_content" android:background="#8D8BB7" android:layout_weight="20" android:text="Faculty Services"> </Button> <Button android:id="@+id/btn_staff" android:layout_width="0dp" android:layout_height="wrap_content" android:background="#8D8BB7" android:layout_weight="20" android:text="Staff"> </Button> <Button android:id="@+id/btn_library" android:layout_width="0dp" android:layout_height="wrap_content" android:background="#8D8BB7" android:layout_weight="20" android:text="Library"> </Button> </LinearLayout> </ScrollView> </LinearLayout>

EDIT: It seems to be something to do with setting the background I removed the background and everything shared equal space except you still must scroll.

link|improve this question

I just want the buttons to share equal space... What does that mean? Horizontally? Vertically? Please clarify what you want. – user432209 Feb 3 '11 at 17:54
feedback

2 Answers

up vote 1 down vote accepted

Your LinearLayout has a vertical orientation, so instead of android:layout_width="0dp" you should use android:layout_height="0dp".

link|improve this answer
The are appearing now but is there a way for them to take up the empty space right now they are just listed one after another. – IZI_Shadow_IZI Feb 3 '11 at 17:42
Try with android:layout_width="fill_parent" for each Button (I'm not sure if it's what you want). – LadaRaider Feb 3 '11 at 17:46
feedback

Try removing android:weightSum="120" and setting the android:layout_weight="20" to android:layout_weight="1" on all of the buttons.

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.