gpt4 book ai didi

java - 设置recyclerView项目高度wrap_content

转载 作者:行者123 更新时间:2023-12-05 00:16:38 27 4
gpt4 key购买 nike

我正在从 firebase 将图像加载到 recyclerview item(imageview) 中。所有图像都有不同的尺寸。

我希望我的 ImageView 根据我正在加载的图像缩放其高度。

主layout.xml

    <?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorPrimaryDark"
xmlns:app="http://schemas.android.com/apk/res-auto">


<android.support.v7.widget.RecyclerView
android:id="@+id/RecyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent">

</android.support.v7.widget.RecyclerView>


</android.support.constraint.ConstraintLayout>

row.xml

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rootLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
>


<ImageView
android:id="@+id/ImageView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>


</LinearLayout>

我正在用java做。

RecyclerView.setHasFixedSize(true);
RecyclerView.setLayoutManager(new LinearLayoutManager(mctx));

此外,当我滚动 recyclerview 时,它会更改图像高度

output

然后我上下滚动,看到了高度。 Scrolled up/down output

第三次, again scrolled and worst output

请帮助我..非常感谢..

最佳答案

在 row.xml 中使用的 ImageView 中将 adjustmentViewBounds 设置为 true,如下所示:

<ImageView
android:id="@+id/ImageView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/img"/>

通过添加调整ViewBounds并将layout_height保留为wrap_content,我们保持图像的宽高比,同时保持宽度与父级匹配,但让高度相应变化,因此我们仍然能够控制图像的大小(有点像)并同时保持纵横比。

您还可以在回收器 View 中设置交错网格布局管理器以具有不同的项目大小。

recyclerView.setLayoutManager(new StaggeredGridLayoutManager(1, 1)); //First param to set span count and second for orientation

关于java - 设置recyclerView项目高度wrap_content,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57211424/

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