Gridview 的自定义项目未正确膨胀

Custom item for Gridview not inflated properly

我在片段布局中有以下 Gridview:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gallery"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<GridView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/grid_view_photos"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:horizontalSpacing="10dp"
    android:numColumns="auto_fit"
    android:stretchMode="columnWidth"
    android:verticalSpacing="10dp"
    android:background="@android:color/darker_gray"/>
</RelativeLayout>

这是为 Gridview 制作的自定义项目:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="5dp">

<ImageView
    gra
    android:id="@+id/image_view_gallery"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginRight="10dp"
    android:layout_centerInParent="true"/>
</RelativeLayout>

这里是适配器的 getView 方法:

@Override
public View getView(int position, View convertView, ViewGroup parent) {
    ImageView imageView;
    if (convertView == null) {
        convertView = inflater.inflate(R.layout.item_photos_grid_view, null);
        imageView = (ImageView) convertView.findViewById(R.id.image_view_gallery);
        imageView.setScaleType(ImageView.ScaleType.CENTER_CROP);

    } else {
        imageView = (ImageView) convertView;
        imageView.setScaleType(ImageView.ScaleType.CENTER_CROP);
    }
    Glide.with(context) //
            .load(PhotosFragmentConstants.IMAGES[position])
            .diskCacheStrategy(DiskCacheStrategy.SOURCE)
            .crossFade()
            .centerCrop()
            .into(imageView);


     return imageView;

所以图像应该有一个边框,因为相对布局。该图像设置了布局边距,因此它创建了边框效果,但它不起作用。 当我运行应用程序时,你只能看到图像视图,没有他后面的布局。

有没有办法让我需要为 gridview 制作项目以便它正确显示? 感谢您的帮助!

将您的代码更改为:

if (convertView == null) {
    convertView = inflater.inflate(R.layout.item_photos_grid_view, null);
}

ImageView imageView = (ImageView) convertView.findViewById(R.id.image_view_gallery);
imageView.setScaleType(ImageView.ScaleType.CENTER_CROP);

如果布局为空,则扩充布局,然后找到您需要的视图。出于性能原因,您可能还需要考虑使用视图持有者。