gpt4 book ai didi

java - GridLayoutManager 相同的图像尺寸

转载 作者:搜寻专家 更新时间:2023-11-01 09:41:44 25 4
gpt4 key购买 nike

我正在试验 RecyclerViewGridLayoutManager

我最终想要显示与这样显示相同大小的图像,如果可能的话甚至是正方形:

enter image description here

GridLayoutManager 的元素是什么使这成为可能?我是否修改了用于填充 RecyclerView 的单个项目 XML?

最佳答案

首先你必须继承一个 ImageView 如下:

import android.content.Context;
import android.util.AttributeSet;
import android.widget.ImageView;


public class MyImageview extends ImageView {
public MyImageview (Context context) {
super(context);
}

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

public MyImageview (Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
setMeasuredDimension(getMeasuredWidth(), getMeasuredWidth()); // Snap to
// width
}
}

在 XML 文件中使用此文件。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

<com.app.MyImageview
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/imageBackground"
android:scaleType="centerCrop"/>

</LinearLayout>

确保您的 MyImageView 高度和宽度必须是 match_parent

关于java - GridLayoutManager 相同的图像尺寸,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39584657/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com