从Android中的URL加载时,图像加载的大小很小

时间:2012-10-05 18:47:38

标签: android url imageview

我需要从我的Android应用程序中的URL加载图像

为此,我在布局中创建了一个ImageView。以下是Imageview

<ImageView
    android:id="@+id/MyImage"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="center_horizontal"
    android:layout_gravity="center_horizontal">          
</ImageView>

然后在我的代码中,我使用以下内容在此ImageView中加载图像

ImageView bmImage = (ImageView)this.findViewById(R.id.MyImage);
String urldisplay = urls[0];
Bitmap mIcon11 = null;
try {
    InputStream in = new java.net.URL(urldisplay).openStream();
    mIcon11 = BitmapFactory.decodeStream(in);
} catch (Exception e) {
    Log.e("Error", e.getMessage());
    e.printStackTrace();
}

bmImage.setImageBitmap(mIcon11);

位于我的网址路径上的图片尺寸为320 X 50.但非常奇怪,当图像显示在ImageView中时,尺寸变得非常小,几乎是宽度和高度的一半

我已经尝试了很多但没有解决方案。有人可以帮忙吗?

2 个答案:

答案 0 :(得分:1)

我认为问题在于您正在设置位图像素并期望设备像素

尝试获取屏幕的密度,然后设置宽度/高度,使其相应地拉伸,如下所示:

ImageView bmImage = (ImageView)this.findViewById(R.id.MyImage);
String urldisplay = urls[0];
        Bitmap mIcon11 = null;
        try {
            InputStream in = new java.net.URL(urldisplay).openStream();
            mIcon11 = BitmapFactory.decodeStream(in);
        } catch (Exception e) {
            Log.e("Error", e.getMessage());
            e.printStackTrace();
        }

 bmImage.setImageBitmap(mIcon11);
 if(mIcon11 != null){
   int width = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP, mIcon11.getWidth(), this.getResources().getDisplayMetrics());
   int height = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP, mIcon11.getHeight(), this.getResources().getDisplayMetrics());

   bmImage.setMinimumWidth(width);
   bmImage.setMinimumHeight(height);
 }

答案 1 :(得分:0)

使用它 image loading library  并确保在DisplayImageOptions imageScaleType(ImageScaleType.EXACTLY_STRETCHED)

中包含此配置