9

I am having a problem showing RecyclerView with StaggeredGridLayoutManager whose item contain an imageview and the image is loaded in imageview using glide. The problem i am facing is that after images getting loaded they are not staggered and are of equal sizes as well there is a big gap between two columns. How to vary the height of images with no gaps in columns?

4

5 回答 5

12

我遇到了同样的问题。对我有用的是android:adjustViewBounds="true"为我的 ImageView 设置。我什至没有设置 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"/>

希望这可以帮助!

于 2016-12-24T14:23:25.783 回答
6

最后,我能够找出灵魂。我必须创建自定义图像视图以在交错回收器视图中改变其纵横比。

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));
于 2016-03-23T08:22:05.257 回答
2

在项目布局中添加android:adjustViewBounds="true"到 ImageViewCenterCropFitCenter在 Glide 中使用,如下所示:

Glide.with(vh.view.getContext())
        .load(item.getUrl())
        .centerCrop()
        .fitCenter()
        .thumbnail(0.3f)
        .placeholder(R.drawable.img_placeholder)
        .into(vh.image);
于 2019-07-11T08:08:36.563 回答
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>
于 2019-08-15T08:40:11.323 回答
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);
                                      }
                                }
                          });
        }

替换毕加索代码即

  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.with(this).load(imageUrl).into(imageView);
于 2016-03-22T08:30:18.883 回答