无法使用 android:layout_gravity="center" 居中 (Android) GridView 项目

Unable to Center (Android) GridView Items using android:layout_gravity="center"

我试图使用 android:layout_gravity="center" 将 GridView 中的项目居中,但是它们不断地出现在左边缘上,我似乎无法发现我在这种情况下做错了什么。

XML:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/ListView_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:weightSum="1" >

    <RelativeLayout
        android:id="@+id/rl_ListView1"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="0.5" >

        <ImageView
            android:id="@+id/imageView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:src="@drawable/boxart" />
    </RelativeLayout>

    <RelativeLayout
        android:id="@+id/rl_ListView2"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_marginTop="30dp"
        android:layout_weight="0.5" >

        <GridLayout
            android:id="@+id/GridLayout1"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_gravity="center"
            android:columnCount="4"
            android:orientation="horizontal"
            android:rowCount="4" >

            <Button
                android:id="@+id/button0"
                android:layout_column="0"
                android:layout_row="0"
                android:text="Button" />

            <Button
                android:id="@+id/button1"
                android:layout_column="1"
                android:layout_row="0"
                android:text="Button" />

            <Button
                android:id="@+id/button2"
                android:layout_column="2"
                android:layout_row="0"
                android:text="Button" />
            <Button
                android:id="@+id/button3"
                android:layout_column="3"
                android:layout_row="0"
                android:text="Button" />
        </GridLayout>
    </RelativeLayout>

</LinearLayout>

您可以将 gridview 属性设置为 numcolumns。

<GridView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:numColumns="auto_fit"/>

你可以试试下面的代码,它对我有用:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
android:padding="5dip" >
<GridView
    android:id="@+id/gridview"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:columnWidth="100dip"
    android:gravity="center"
    android:horizontalSpacing="10dip"
    android:numColumns="3"
    android:stretchMode="spacingWidthUniform"
    android:verticalSpacing="10dip" />
</LinearLayout>

需要注意的一个区别:

android:gravity : 设置其使用的视图内容的重力。

android:layout_gravity : 设置父视图或布局的重力。

您在 RelativeLayout 中使用 GridLayout,因此 android:layout_gravity="center" 不起作用 [0]。

尝试将其替换为以下之一(作为您的中心偏好):

  • android:layout_centerHorizontal="true"
  • android:layout_centerVertical="true"
  • android:layout_centerInParent="true"

[0] - here 您可以找到 RelativeLayout 支持的所有布局参数。 layout_gravity 不是其中之一。

在 RelativeLayout 中你应该使用 android:layout_centerInParent="true" 而不是 android:layout_gravity="center" 并且在你的 GridLayout 中改变你的 android:layout_width="match_parent"android:layout_width="wrap_content"。 如果你想改变按钮之间的空格,你可以很容易地添加 android:layout_margin="10dp" 到按钮标签。 我希望快乐 :D