从网址设置imageview图像

时间:2013-06-22 18:12:53

标签: android image url imageview

好吧我花了好几个小时试图解决这个问题并且大多数解决方案都不起作用,做了工作的那个使得图像的高宽比保持不变,我想要的是能够设置来自URL的imageview图像,并使宽度match_parent和高度175dp。请有人帮助我!!!

1 个答案:

答案 0 :(得分:0)

使用以下代码

    <ImageView  android:layout_width="match_parent"
        android:layout_height="175dp"
        android:scaleType="fitXY"
        />

public static void LoadImageFromWebOperations(String url,ImageView img) {
    try {
        InputStream is = (InputStream) new URL(url).getContent();
        Drawable d = Drawable.createFromStream(is, "src name");
        img.setImageDrawable(d);

    } catch (Exception e) {

    }
}