0

添付ファイルにあるように、次のリンク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 が URL から画像の元の解像度を取得できず、ぼやけている理由を確認してください。ここに画像の説明を入力

4

1 に答える 1

0

ImageView の代わりに WebView を使用することで、私が望むものを実現できます。

于 2013-06-05T03:22:04.577 に答える