android中gridview的item为什么不能居中
2个回答
展开全部
设置gridview的属性中的子布局文件里面,加上android:gravity="center"
<RelativeLayout xmlns:android="
android:layout_width="match_parent"
android:layout_height="match_parent">
<GridView
android:id="@+id/grid_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerInParent="true"
android:background="#f0f0f0"
android:horizontalSpacing="4dp"
android:numColumns="3"
android:verticalSpacing="4dip">
</GridView>
</RelativeLayout>
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff">
<ImageView
android:id="@+id/grid_view_item_img"
android:layout_width="96dp"
android:layout_height="96dp"
android:layout_centerInParent="true"
android:scaleType="centerCrop" />
</RelativeLayout>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询