我正在将图像从Firebase加载到recyclerview项目(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时,它会更改图像高度
然后我上下滚动并查看高度。 Scrolled up/down output
第三次, again scrolled and worst output
请帮助我..非常感谢..
答案 0 :(得分:0)
在row.xml中使用的图像视图中,将AdjustViewBounds设置为true,如下所示:
<ImageView
android:id="@+id/ImageView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/img"/>
通过添加adjustViewBounds并将layout_height保留为wrap_content,我们可以保持图像的长宽比,同时保持宽度与父对象匹配,但高度可以相应地更改,因此我们仍然能够控制图像的大小( )并同时保持宽高比。
您还可以在Recyler视图中将交错的网格布局管理器设置为具有不同的项目大小。
recyclerView.setLayoutManager(new StaggeredGridLayoutManager(1, 1)); //First param to set span count and second for orientation
答案 1 :(得分:0)
尝试以下代码
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
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="0dp"
android:layout_height="0dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintDimensionRatio="H,16:5" />
</android.support.constraint.ConstraintLayout >
如果您设置
app:layout_constraintDimensionRatio =“ H,16:5”
这意味着首先要根据其他约束条件计算宽度,然后根据宽高比调整高度。要根据另一边的尺寸约束某一特定侧面,我们可以在W或H之前附加(以逗号)分别限制宽度或高度。例如,如果一个尺寸受两个目标约束(例如,宽度为0dp并以父对象为中心),则可以通过在其中添加字母W(用于约束宽度)或H(用于约束高度)来指示应约束哪一侧。比率的前面,以逗号分隔。