图像未在Imageview小部件中显示为其大小

时间:2012-11-08 14:34:40

标签: android facebook

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

我从facebook api发布了facebook的照片,例如下面提到的网址    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"/>

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

0 个答案:

没有答案