android imageview在完全下载后出现失真

时间:2013-06-04 02:48:38

标签: android

正如大家所看到的那样,使用以下链接Load images from web and caching的编码完全下载后,android imageview会出现失真。

这是我的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无法从网址获取图像的原始分辨率并导致模糊。!enter image description here

1 个答案:

答案 0 :(得分:0)

必须使用WebView而不是ImageView才能实现我想要的目标。