我有一个Recyclerview,显示来自外部存储的图片网格。在我测试过的所有设备上,包括虾米、Nexus7、三星S3、one+2、Moto G-2等,recyclerview都能正确显示图片。我正在使用Glide图像加载库来加载图片。
我已经使用以下设置了适配器
savedPhotosGridLayoutManager = new GridLayoutManager(application, SPAN_COUNT);
savedPhotosGrid.setLayoutManager(savedPhotosGridLayoutManager);
savedPhotosGrid.addItemDecoration(new ItemOffsetDecoration(application, R.dimen.grid_save_spacing));
savedPhotosGrid.setAdapter(savedPhotosGridAdapter);
savedPhotosGrid.setHasFixedSize(true);
一行中的项目具有以下xml。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/item_recycler_view">
<ImageView
android:id="@+id/savedPhoto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:scaleType="centerCrop"
android:transitionName="imageScale" />
<ImageView
android:id="@+id/mask"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/savedPhoto"
android:layout_alignEnd="@+id/savedPhoto"
android:layout_alignLeft="@+id/savedPhoto"
android:layout_alignRight="@+id/savedPhoto"
android:layout_alignStart="@+id/savedPhoto"
android:layout_alignTop="@+id/savedPhoto"
android:background="@drawable/item_recycler_view"
android:clickable="true" />
</RelativeLayout>
我使用Glide将图像加载到这个中。
Glide.with(context).load(savedImageFilePaths.get(i)).override(100, 100).centerCrop().into(viewHolder.savedImage);
出于某种奇怪的原因,在三星S4上,recyclerview项目没有正确显示。行看起来是裁剪的,应该是正方形的(因为我加载的是一个100乘100的图像),是它的裁剪版本。行的宽度是正确的,而行的高度是不正确的(比它应该的短)。
只有当我将xml中的值硬编码为100dp乘100dp时,它才能在S4上正确显示。这显然很奇怪,因为我测试该应用程序的所有其他设备都能正确显示网格中的方形图像(recyclerview)。
这是一个bug还是我哪里出了问题/遗漏了什么?
我也遇到过类似的问题,这为我解决了它:
mImageView.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
希望它能有所帮助!