0

好吧,我花了几个小时试图弄清楚这一点,但大多数解决方案都不起作用,起作用的解决方案使图像的高度和宽度比保持不变,我想要的是能够设置 imageview 图像从一个 URL 并使宽度 match_parent 和高度 175dp。请有人帮助我!!!

4

1 回答 1

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) {

    }
}
于 2013-06-22T18:21:29.240 回答