我是Android开发的新手,我正在开发一个应用程序,其中应用程序从服务器下载图片并在gridView中显示它们。但是当应用程序在更大的屏幕手机上运行时,会出现一些额外的空间。这是一些截图。我该如何解决这个问题?我有每个项目的模型,其高度和宽度固定为110dp
我的图像模型:
<?xml version="1.0" encoding="utf-8"?>
<ImageView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="110dp"
android:layout_height="110dp"
app:srcCompat="@drawable/post2"
android:id="@+id/imageView2"
android:adjustViewBounds="true"
android:scaleType="centerCrop"
android:layout_margin="1.5dp" />
我的回收商视图:
<android.support.v7.widget.RecyclerView
android:id="@+id/gallerygrid"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="4dp"
android:numColumns="auto_fit"
android:stretchMode="columnWidth"
android:visibility="visible"
android:layout_gravity="center">
</android.support.v7.widget.RecyclerView>
答案 0 :(得分:19)
根据屏幕大小动态设置高度和宽度。这是获得完美结果的最佳方式。
DisplayMetrics displaymetrics = new DisplayMetrics();
((Activity) context).getWindowManager().getDefaultDisplay().getMetrics(displaymetrics);
//if you need three fix imageview in width
int devicewidth = displaymetrics.widthPixels / 3;
//if you need 4-5-6 anything fix imageview in height
int deviceheight = displaymetrics.heightPixels / 4;
holder.image_view.getLayoutParams().width = devicewidth;
//if you need same height as width you can set devicewidth in holder.image_view.getLayoutParams().height
holder.image_view.getLayoutParams().height = deviceheight;
在getview的适配器中尝试这个,希望你在所有设备中获得更好的结果
修改强> 或者要设置与宽度相同的高度,您可以设置高度的设备宽度,如下所示:
holder.image_view.getLayoutParams().height = devicewidth;
答案 1 :(得分:2)
对于那些想要在xml布局(recyclerView项目)文件中执行此操作的人,可以使用ConstraintLayout 结合
android:layout_width="match_parent"
android:layout_height="wrap_content"
以及以下具有正方形项的代码
app:layout_constraintDimensionRatio="4:4"
并且不要忘记以设置方式提供所有约束
android:layout_width="0dp"
android:layout_height="0dp"
因此,完整的代码如下
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="1dp"
android:layout_marginEnd="1dp"
>
<ImageView
android:id="@+id/img_view"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginTop="1dp"
android:layout_marginBottom="1dp"
app:layout_constraintDimensionRatio="4:4"
app:srcCompat="@drawable/event_placeholder"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:scaleType="centerCrop"
/>
</androidx.constraintlayout.widget.ConstraintLayout>
答案 2 :(得分:0)
您还可以在测量后获得 RecyclerView
宽度。见How to find width of item in recyclerview?、How to know when the RecyclerView has finished laying down the items?。
例如
recyclerView.post {
val width = recyclerView.width
...
}