0

我得到了尺寸为 960*540 像素的图像,但是当我将图像视图的宽度和高度设置为 wrap_content 时,它显示的尺寸非常小。

我从 facebook api 获得了 facebook 的图片,例如下面提到的 url https://fbcdn-photos-a.akamaihd.net/hphotos-ak-prn1/66547_4971955335921_1754998366_n.jpg 我使用 imageloader 类将此图像设置为我的 imageview就像我在下面提到的

ImageView postimg= (ImageView) rowView.findViewById(R.id.picpost);
ImageLoader imageLoader;
imageLoader.DisplayImage(postimage.get(position).replace(" ", "%20"), postimg) ;

我使用的xml是

<ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/msg"
        android:id="@+id/picpost"
        android:layout_alignParentLeft="true"
        android:layout_marginTop="5dp"/>

但我的图像非常小。我真的不明白为什么会这样。提前致谢

4

0 回答 0