我的布局简单:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<GridView
android:id="@+id/photo_browser_grid_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
android:horizontalSpacing="5dp"
android:verticalSpacing="5dp"
android:stretchMode="none"
android:numColumns="auto_fit"
android:columnWidth="100dp">
</GridView>
我想将GridView放在Relative布局中。我的间距总是固定的。结果我将GridView对齐到左边。我怎样才能把它放在父母的中心?
答案 0 :(得分:6)
对于布局中的GridView,android:numColumns="auto_fit"
与android:layout_width="wrap_content"
冲突。这意味着:要计算要形成的列数,需要宽度,但要找到宽度,我们需要包含多少列,循环依赖。
您可以使用android:stretchMode
让列填满空白区域。