GridView is not behaving like it is supposed to. This screenshot shows that the GridView (in landscape mode) is flushed left. I want it centered.

This is the XML layout for the GridView.

<LinearLayout 
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/templatelandscape"
  android:orientation="horizontal"
  android:layout_width="fill_parent" 
  android:layout_height="wrap_content">
<GridView 
  android:id="@+id/commandsbarlandscape"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_weight="1.0"
  android:layout_alignParentTop="true"
  android:layout_centerInParent="true"
  android:padding="0dp"
  android:verticalSpacing="2dp"
  android:horizontalSpacing="2dp"
  android:numColumns="auto_fit"
  android:columnWidth="52dp"
  android:stretchMode="spacingWidth"
  android:gravity="fill_horizontal" />
</LinearLayout>

What am I doing wrong ?

link|improve this question

77% accept rate
You need GridView to be centered or its items??? – bhatt4982 Oct 9 '09 at 17:30
I want the GridView to be centered in its parent. Not the items. – Jacques René Mesrine Oct 10 '09 at 4:01
feedback

3 Answers

  1. android:layout_height="wrap_content" has no meaning for widgets that have their own scrolling, like GridView.

  2. android:layout_alignParentTop="true" and android:layout_centerInParent="true" are for RelativeLayout, not LinearLayout.

Get rid of your android:layout_weight="1.0", change your android:layout_height to "fill_parent" or a specific height, change the LinearLayout to a RelativeLayout, and you may be in better shape.

link|improve this answer
It is still not working even with your recommendations. – Jacques René Mesrine Oct 11 '09 at 10:24
feedback

Try switching to RelativeLayout and remove the horizontal padding from the grid view. Horizontal padding was causing my grid to shift off of center. I added a view container around the grid item layout to create the padding.

link|improve this answer
feedback

set the value of LinearLayout with following attribute

android:gravity="center".

and remove the following line from gridview

android:layout_centerInParent="true"
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.