10

我在 android 中使用 recyclerview 和 staggredGridLayoutManager。问题是,有时当滚动项目四处移动以适应屏幕时。通常没什么好担心的,但就我而言,它会搞砸一切!那么有没有办法阻止这种行为呢?不仅仅是动画。整个项目重新排列的东西。谢谢你

4

4 回答 4

2

经过一番搜索,我意识到没有可行的解决方案!StaggeredGridLayoutManager 将重新排列导致项目移动的项目。除非我们编写一个完全定制的 LayoutManager 女巫不是很容易,否则我怀疑是否有办法处理这个问题。

于 2018-11-29T11:10:22.453 回答
2

如果您使用的是毕加索,那么首先创建一个自定义 ImageView

public class DynamicHeightImageView extends ImageView  {

private double mHeightRatio;

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

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

//Here we will set the aspect ratio
public void setHeightRatio(double ratio) {
    if (ratio != mHeightRatio) {
        mHeightRatio = ratio;
        requestLayout();
    }
}

public double getHeightRatio() {
    return mHeightRatio;
}

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    if (mHeightRatio > 0.0) {
        // set the image views size
        int width = MeasureSpec.getSize(widthMeasureSpec);
        int height = (int) (width * mHeightRatio);
        setMeasuredDimension(width, height);
    } else {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    }
}


}

然后在你的 onBindViewHolder

Picasso.with(context).load(modal.image.mediumUrl).into(holder.profileImage, new Callback() {
            @Override
            public void onSuccess() {
                holder.profileImage.setHeightRatio(holder.profileImage.getHeight()/holder.profileImage.getWidth());
            }

            @Override
            public void onError() {

            }
        });
于 2016-07-27T20:18:23.663 回答
2

使用 Randy 的回答中建议的 ImageView,您可以对 Glide 执行相同的操作:

  Glide.with(context)
            .load(imageURL)
            .asBitmap()
            .dontAnimate()
            .fitCenter()
            .diskCacheStrategy(DiskCacheStrategy.RESULT)
            .into(new SimpleTarget<Bitmap>() {
                @Override
                public void onResourceReady(Bitmap bitmap, GlideAnimation anim) {

                    if (bitmap != null)
                    {
                        holder.image.setHeightRatio(bitmap.getHeight()/bitmap.getWidth());
                        holder.image.setImageBitmap(bitmap);
                    }
                }
            });
于 2016-09-22T15:43:57.327 回答
-1

要禁用重新排列,只需调用 recyclerView.itemAnimator = null

此外,如果您使用ImageViews,请确保您设置adjustViewBoundstrue

于 2020-07-01T11:47:03.590 回答