使用StaggeredGridLayoutManager的RecyclerView与从Glide加载的图片

9
我遇到了一个问题,我正在使用具有StaggeredGridLayoutManagerRecyclerView显示包含imageview的项并且通过glideimageview中加载图像。我面临的问题是,在图像加载后,它们不是交错的,并且大小相等以及两列之间有很大的间隙。如何在没有列之间的间隙的情况下改变图像的高度?

如果列之间有很大的间隔,那么你还应该为图片提供scaleType。我建议你设置centerCrop或fitXY scaleType。 - Apurva
提供您的工作代码和任何图像将更易于理解。 - Sayem
你可以查看这个链接,其中你可以使用Glide/Picasso-RecyclerView-StaggeredGridLayoutManager - YLS
5个回答

13

我也遇到了同样的问题。对我起作用的是为我的ImageView设置android:adjustViewBounds="true"。我甚至没有设置scaleType。

这是我的布局文件item.xml的完整内容。

<?xml version="1.0" encoding="utf-8"?>
<ImageView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/gif_image"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/colorFiller"
    android:adjustViewBounds="true"/>
希望这有所帮助!

6

最终我找到了解决方案。我不得不创建自定义的ImageView来在Staggered Recycler View中改变其宽高比。

public class DynamicHeightNetworkImageView extends ImageView {
private float mAspectRatio = 1.5f;

public DynamicHeightNetworkImageView(Context context) {
    super(context);
}

public DynamicHeightNetworkImageView(Context context, AttributeSet attrs) {
    super(context, attrs);
}

public DynamicHeightNetworkImageView(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
}

public void setAspectRatio(float aspectRatio) {
    mAspectRatio = aspectRatio;
    requestLayout();
}

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    int measuredWidth = getMeasuredWidth();
    setMeasuredDimension(measuredWidth, (int) (measuredWidth / mAspectRatio));
}
}

然后在适配器的onBindViewHolder方法中,我通过以下方式设置图像的纵横比 -

Picasso.with(this).load(THUMB_URL).into(holder.thumbnailView);
holder.thumbnailView.setAspectRatio(ASPECT_RATIO));

2
谢谢。两年后,你仍然拯救了我的项目和生命 :D - Dika
传递什么参数ASPECT_RATIO?如何获取它? - sam

2
在项目布局的ImageView中添加android:adjustViewBounds="true",并在Glide中使用CenterCropFitCenter,如下所示:最初的回答。
Glide.with(vh.view.getContext())
        .load(item.getUrl())
        .centerCrop()
        .fitCenter()
        .thumbnail(0.3f)
        .placeholder(R.drawable.img_placeholder)
        .into(vh.image);

0

首先初始化您的RecyclerView

 RecyclerView recyclerGallery = (RecyclerView)findViewById(R.id.gallery_recycler_view);
 gaggeredGridLayoutManager = new StaggeredGridLayoutManager(3, 1);
 recyclerGallery.setLayoutManager(gaggeredGridLayoutManager);
 galleryAdapter = new GalleryAdaptor(ProfImageGallery.this, imgsUrl);
 recyclerGallery.setAdapter(galleryAdapter);

然后您的适配器(根据您的需求进行编辑)

  public class GalleryAdaptor extends RecyclerView.Adapter<GalleryAdaptor.ViewHolder> {

        private Context mContext;
        private ArrayList<String> mDataset;


  // Provide a suitable constructor (depends on the kind of dataset)
        public GalleryAdaptor(Context mContext, ArrayList<String> mdataList) {
              this.mContext = mContext;
              this.mDataset = mdataList;
        }

        // Create new views (invoked by the layout manager)
        @Override
        public GalleryAdaptor.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {

              // create a new view
              View v = LayoutInflater.from(parent.getContext())
                             .inflate(R.layout.row_gallery, parent, false);

              // set the view's size, margins, paddings and layout parameters 
              ViewHolder vh = new ViewHolder(v);
              return vh;
        }

        // Replace the contents of a view (invoked by the layout manager)
        @Override
        public void onBindViewHolder(final ViewHolder holder, final int position) {
              // - get element from your dataset at this position
              // - replace the contents of the view with that element


              String imageUrl = mDataset.get(position);

              holder.progressBar.setVisibility(View.VISIBLE); 

              //load the image url with a callback to a callback method/class

              Picasso.with(mContext)
                    .load(imageUrl)
                    .into(holder.workImage, 
                          new ImageLoadedCallback(holder.progressBar) {
                                @Override
                                public void onSuccess() {
                                      if (holder.progressBar != null) {
                                            holder.progressBar.setVisibility(View.GONE);
                                      }
                                }
                          });
        }

替换 Picaso 代码,例如

  Picasso.with(mContext)
        .load(imageUrl)
        .into(holder.workImage, 
              new ImageLoadedCallback(holder.progressBar) {
                    @Override
                    public void onSuccess() {
                          if (holder.progressBar != null) {
                                holder.progressBar.setVisibility(View.GONE);
                          }
                    }
              });

使用 Glide。

  Glide.with(this).load(imageUrl).into(imageView);

R.layout.row_gallery 的布局是什么? - Passiondroid
这是在RecyclerView中使用的布局行。 - Navneet Sharma

0

对我来说它是有效的

        Picasso.get()
                .load(uploadCurrent.getImageUrl())
                .placeholder(R.drawable.loading)
                .config(Bitmap.Config.RGB_565)
                .into(holder.imageView);

<?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="wrap_content"
    android:layout_margin="2dp"
    xmlns:app="http://schemas.android.com/apk/res-auto">
    <ImageView
        android:id="@+id/id_imgItem"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:adjustViewBounds="true"/>
    <TextView
        android:id="@+id/textview"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignBottom="@+id/id_imgItemGets"
        android:paddingTop="4dp"
        android:paddingBottom="4dp"
        android:gravity="center_horizontal"
        android:textSize="18sp"/>

</RelativeLayout>

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接