正如您在附件中看到的那样,android imageview 在使用以下链接Load images from web and caching的编码完全下载后出现失真。
这是我的 imageview 标签,原始图像分辨率为 850x315。
<ImageView
android:paddingTop="10dip"
android:paddingBottom="5dip"
android:id="@+id/idThumb"
android:layout_width="match_parent"
android:layout_height="70dp"
android:contentDescription="@string/app_name"
android:scaleType="centerCrop"
android:src="@drawable/no_image" />
请检查我为什么这个 ImageView 无法从 URL 获取图像的原始分辨率并变得模糊。!