I am trying to make a horizontal menu bar, however for some reason when I use weights they do not align horizontally, any suggestions?
<LinearLayout
android:id="@+id/bottombuttonslayout"
android:layout_width="match_parent"
android:layout_height="58dp"
android:layout_alignParentBottom="true"
android:weightSum="1.0" >
<LinearLayout
android:id="@+id/listSlotBox"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight=".20"
android:gravity="center" >
<ImageView
android:id="@+id/listSlot"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="false"
android:background="@drawable/list" />
</LinearLayout>
<LinearLayout
android:id="@+id/leftArrorSlotBox"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight=".20" >
<ImageView
android:id="@+id/leftArrowSlot"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="false"
android:background="@drawable/left_arrow" />
</LinearLayout>
<LinearLayout
android:id="@+id/playSlotBox"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight=".20" >
<ImageView
android:id="@+id/playSlot"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="false"
android:background="@drawable/playing" />
</LinearLayout>
<LinearLayout
android:id="@+id/rightArrowSlotBox"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight=".20" >
<ImageView
android:id="@+id/rightArrowSlot"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="false"
android:background="@drawable/right_arrow" />
</LinearLayout>
This is what it looks like, they are aligning vertically. not horizontally:

EDIT
This is following the first suggestion:


android:layout_gravity="center"will only work in vertical direction for a horizontally orientedLinearLayout(and vice versa for a vertically oriented one). Did you try addingandroid:gravity="center"on the nested LinearLayouts in stead? Alternatively, you can always exchange them for something like aFrameLayoutorRelativeLayout, which will give you some more control over positioning. – MH. Jul 3 '12 at 5:03